You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
675 B
26 lines
675 B
2 years ago
|
/*!
|
||
|
\file gk_externs.h
|
||
|
\brief This file contains definitions of external variables created by GKlib
|
||
|
|
||
|
\date Started 3/27/2007
|
||
|
\author George
|
||
|
\version\verbatim $Id: gk_externs.h 10711 2011-08-31 22:23:04Z karypis $ \endverbatim
|
||
|
*/
|
||
|
|
||
|
#ifndef _GK_EXTERNS_H_
|
||
|
#define _GK_EXTERNS_H_
|
||
|
|
||
|
|
||
|
/*************************************************************************
|
||
|
* Extern variable definition. Hopefully, the __thread makes them thread-safe.
|
||
|
**************************************************************************/
|
||
|
#ifndef _GK_ERROR_C_
|
||
|
/* declared in error.c */
|
||
|
extern __thread int gk_cur_jbufs;
|
||
|
extern __thread jmp_buf gk_jbufs[];
|
||
|
extern __thread jmp_buf gk_jbuf;
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#endif
|