| 
									
										
										
										
											2013-02-10 21:56:49 +02:00
										 |  |  | /* Declarations shared between the different POSIX-related modules */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef Py_POSIXMODULE_H
 | 
					
						
							|  |  |  | #define Py_POSIXMODULE_H
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef HAVE_SYS_TYPES_H
 | 
					
						
							| 
									
										
										
										
											2023-09-07 02:09:06 +02:00
										 |  |  | #  include <sys/types.h>          // uid_t
 | 
					
						
							| 
									
										
										
										
											2013-02-10 21:56:49 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											2023-09-07 02:09:06 +02:00
										 |  |  | extern PyObject* _PyLong_FromUid(uid_t); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Export for 'grp' shared extension
 | 
					
						
							|  |  |  | PyAPI_FUNC(PyObject*) _PyLong_FromGid(gid_t); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Export for '_posixsubprocess' shared extension
 | 
					
						
							| 
									
										
										
										
											2020-12-29 13:58:27 +01:00
										 |  |  | PyAPI_FUNC(int) _Py_Uid_Converter(PyObject *, uid_t *); | 
					
						
							| 
									
										
										
										
											2023-09-07 02:09:06 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Export for 'grp' shared extension
 | 
					
						
							| 
									
										
										
										
											2020-12-29 13:58:27 +01:00
										 |  |  | PyAPI_FUNC(int) _Py_Gid_Converter(PyObject *, gid_t *); | 
					
						
							| 
									
										
										
										
											2023-09-07 02:09:06 +02:00
										 |  |  | #endif   // !MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											2018-05-08 07:48:50 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-07 02:09:06 +02:00
										 |  |  | #if (defined(PYPTHREAD_SIGMASK) || defined(HAVE_SIGWAIT) \
 | 
					
						
							|  |  |  |      || defined(HAVE_SIGWAITINFO) || defined(HAVE_SIGTIMEDWAIT)) | 
					
						
							|  |  |  | #  define HAVE_SIGSET_T
 | 
					
						
							| 
									
										
										
										
											2013-02-10 21:56:49 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-07 02:09:06 +02:00
										 |  |  | extern int _Py_Sigset_Converter(PyObject *, void *); | 
					
						
							| 
									
										
										
										
											2018-05-08 07:48:50 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-10 21:56:49 +02:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-09-07 02:09:06 +02:00
										 |  |  | #endif   // !Py_POSIXMODULE_H
 |