~ibmcharmers/charms/xenial/ibm-db2/trunk

« back to all changes in this revision

Viewing changes to .tox/py35/include/python3.5m/intrcheck.h

  • Committer: Rajith Venkata
  • Date: 2017-02-22 09:37:48 UTC
  • Revision ID: rajith.pv@in.ibm.com-20170222093748-fibtdsahuug31ra5
2ndcheckin for IBM-DB2 charm

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef Py_INTRCHECK_H
 
3
#define Py_INTRCHECK_H
 
4
#ifdef __cplusplus
 
5
extern "C" {
 
6
#endif
 
7
 
 
8
PyAPI_FUNC(int) PyOS_InterruptOccurred(void);
 
9
PyAPI_FUNC(void) PyOS_InitInterrupts(void);
 
10
PyAPI_FUNC(void) PyOS_AfterFork(void);
 
11
PyAPI_FUNC(int) _PyOS_IsMainThread(void);
 
12
 
 
13
#ifdef MS_WINDOWS
 
14
/* windows.h is not included by Python.h so use void* instead of HANDLE */
 
15
PyAPI_FUNC(void*) _PyOS_SigintEvent(void);
 
16
#endif
 
17
 
 
18
#ifdef __cplusplus
 
19
}
 
20
#endif
 
21
#endif /* !Py_INTRCHECK_H */