All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m13s
15 lines
271 B
C
15 lines
271 B
C
#ifndef _LIBPROCESS_PROCESS_SELF_H
|
|
#define _LIBPROCESS_PROCESS_SELF_H
|
|
|
|
void libprocess_self_init (void);
|
|
|
|
int process_get_exec_pid (void);
|
|
|
|
int process_get_exec_pgid (void);
|
|
|
|
int process_get_pid (void);
|
|
|
|
int process_get_pgid (void);
|
|
|
|
#endif // _LIBPROCESS_PROCESS_SELF_H
|