- Timestamp:
- Feb 6, 2014, 12:31:35 PM (12 years ago)
- Location:
- trunk/libc
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libc/include/emx/startup.h
r2807 r3804 65 65 #endif 66 66 67 #if __GNUC_PREREQ__(4,2) 68 # define CRT_DATA_USED __attribute__((__used__)) 69 #else 70 # define CRT_DATA_USED 71 #endif 67 72 68 73 -
trunk/libc/src/kNIX/os2/DosEx.c
r2929 r3804 160 160 * Initialize the semaphore. 161 161 */ 162 CRT_DATA_USED 162 163 void dosexInit(void) 163 164 { -
trunk/libc/src/kNIX/os2/b_processWait.c
r3775 r3804 144 144 * wait facilities. 145 145 */ 146 CRT_DATA_USED 146 147 static void waitInit(void) 147 148 { … … 173 174 * the _CRT_EXIT1() stuff isn't good enough alone. 174 175 */ 176 CRT_DATA_USED 175 177 void __libc_back_processWaitNotifyTerm(void) 176 178 { -
trunk/libc/src/kNIX/os2/libcfork.c
r3796 r3804 749 749 * @param pXcptRegRec Pointer to the exception registration record (fDoneCompletion). 750 750 */ 751 CRT_DATA_USED 751 752 static int forkParDo(void *pvForkRet, void *pvStackRet, __LIBC_PFORKXCPTREGREC pXcptRegRec) 752 753 { … … 1488 1489 * This worker is called on after relocating the stack. 1489 1490 */ 1491 CRT_DATA_USED 1490 1492 int forkChlDoFork2(__LIBC_PFORKHANDLE pForkHandle) 1491 1493 { -
trunk/libc/src/kNIX/os2/tcpipver.c
r3632 r3804 1350 1350 * Init function which registers the tcpip cleanup handler with the exit list. 1351 1351 */ 1352 CRT_DATA_USED 1352 1353 static void tcpipInit(void) 1353 1354 { -
trunk/libc/src/kNIX/os2/timebomb.c
r2929 r3804 32 32 #endif 33 33 34 CRT_DATA_USED 34 35 void __libc_Timebomb(void) 35 36 { -
trunk/libc/src/libc/app/stdio.c
r2739 r3804 53 53 * _CRT_init() via the __crtinit1__ set vector. 54 54 */ 55 CRT_DATA_USED 55 56 void _init_streams(void); 57 CRT_DATA_USED 56 58 void _init_streams(void) 57 59 { … … 152 154 print something. (ISO 9899-1990 lets this undefined.) */ 153 155 156 CRT_DATA_USED 154 157 void _exit_streams(void); 158 CRT_DATA_USED 155 159 void _exit_streams(void) 156 160 { -
trunk/libc/src/libc/io/_tmp.c
r1454 r3804 26 26 /** Initialize the semaphore -- this function will be called by 27 27 _CRT_init() via the __crtinit1__ set vector. */ 28 CRT_DATA_USED 28 29 static void _init1_tmp(void) 29 30 {
Note:
See TracChangeset
for help on using the changeset viewer.