psl1ght
A free SDK for Sony's PS3 console
process.h
Go to the documentation of this file.
1 
5 #ifndef __LV2_PROCESS_H__
6 #define __LV2_PROCESS_H__
7 
8 #include <ppu-types.h>
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
19 void sysProcessExit(int status) __attribute__((noreturn));
20 
40 void sysProcessExitSpawn2(const char *path,const char *argv[],const char *envp[],void *data,size_t size,int priority,u64 flags);
41 
42 #ifdef __cplusplus
43  }
44 #endif
45 
46 #endif
void sysProcessExitSpawn2(const char *path, const char *argv[], const char *envp[], void *data, size_t size, int priority, u64 flags)
Terminate the running process and execute another program.
void sysProcessExit(int status) __attribute__((noreturn))
Terminate the running process.