FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python/Include/pythread.h at master · charleson/python · GitHub
charleson
/
python
Public
forked from
glix/python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python
/
Include
/
pythread.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
50 lines (38 loc) · 1.41 KB
Breadcrumbs
python
/
Include
/
pythread.h
Copy path
File metadata and controls
50 lines (38 loc) · 1.41 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef
Py_PYTHREAD_H
#define
Py_PYTHREAD_H
#define
NO_EXIT_PROG
/* don't define PyThread_exit_prog() */
/* (the result is no use of signals on SGI) */
typedef
void
*
PyThread_type_lock
;
typedef
void
*
PyThread_type_sema
;
#ifdef
__cplusplus
extern
"C"
{
#endif
PyAPI_FUNC
(
void
)
PyThread_init_thread
(
void
);
PyAPI_FUNC
(
long
)
PyThread_start_new_thread
(
void
(
*
)(
void
*
),
void
*
);
PyAPI_FUNC
(
void
)
PyThread_exit_thread
(
void
);
PyAPI_FUNC
(
void
)
PyThread__PyThread_exit_thread
(
void
);
PyAPI_FUNC
(
long
)
PyThread_get_thread_ident
(
void
);
PyAPI_FUNC
(
PyThread_type_lock
)
PyThread_allocate_lock
(
void
);
PyAPI_FUNC
(
void
)
PyThread_free_lock
(
PyThread_type_lock
);
PyAPI_FUNC
(
int
)
PyThread_acquire_lock
(
PyThread_type_lock
,
int
);
#define
WAIT_LOCK
1
#define
NOWAIT_LOCK
0
PyAPI_FUNC
(
void
)
PyThread_release_lock
(
PyThread_type_lock
);
PyAPI_FUNC
(
size_t
)
PyThread_get_stacksize
(
void
);
PyAPI_FUNC
(
int
)
PyThread_set_stacksize
(
size_t
);
#ifndef
NO_EXIT_PROG
PyAPI_FUNC
(
void
)
PyThread_exit_prog
(
int
);
PyAPI_FUNC
(
void
)
PyThread__PyThread_exit_prog
(
int
);
#endif
/* Thread Local Storage (TLS) API */
PyAPI_FUNC
(
int
)
PyThread_create_key
(
void
);
PyAPI_FUNC
(
void
)
PyThread_delete_key
(
int
);
PyAPI_FUNC
(
int
)
PyThread_set_key_value
(
int
,
void
*
);
PyAPI_FUNC
(
void
*
)
PyThread_get_key_value
(
int
);
PyAPI_FUNC
(
void
)
PyThread_delete_key_value
(
int
key
);
/* Cleanup after a fork */
PyAPI_FUNC
(
void
)
PyThread_ReInitTLS
(
void
);
#ifdef
__cplusplus
}
#endif
#endif
/* !Py_PYTHREAD_H */
Back
|
FazBrowse Home
|
New Git URL