My Project
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules
soc.h
Go to the documentation of this file.
1 #pragma once
2 
3 Result SOC_Initialize(u32 *context_addr, u32 context_size);//Example context_size: 0x48000. The specified context buffer can no longer be accessed by the process which called this function, since the userland permissions for this block are set to no-access.
5 int SOC_GetErrno();
6 
7 Result SOC_Shutdown(void);
8 int SOC_GetErrno(void);
9 
10 /* this is supposed to be in unistd.h but newlib only puts it for cygwin */
11 long gethostid(void);
12 
s32 Result
Definition: types.h:42
Result SOC_Shutdown()
Definition: soc_init.c:31
uint32_t u32
Definition: types.h:23
Result SOC_Initialize(u32 *context_addr, u32 context_size)
Definition: soc_init.c:19
int SOC_GetErrno()
Definition: soc_common.c:101
long gethostid(void)
Definition: soc_gethostid.c:3