Changeset 2901
- Timestamp:
- Dec 24, 2006, 2:48:39 PM (18 years ago)
- Location:
- trunk/libc
- Files:
-
- 8 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/libc/Config.kmk ¶
r2819 r2901 216 216 $(LIBC-STD.H): 217 217 218 ifneq ($(SUB_DEPTH),.) 219 std-update: 220 $(MAKE) -C $(SUB_DEPTH) std-update 221 endif 222 -
TabularUnified trunk/libc/Makefile.kmk ¶
r2807 r2901 26 26 27 27 DEPTH = .. 28 SUB_DEPTH = . 28 29 include $(PATH_KBUILD)/subheader.kmk 29 30 -
TabularUnified trunk/libc/include/InnoTekLIBC/atexit.h ¶
r2787 r2901 1 /* $Id$ */ 2 /** @file 3 * 4 * LIBC atexit() and on_exit() support. 5 * 6 * Copyright (c) 2005 knut st. osmundsen <bird@anduin.net> 7 * 8 * 9 * This file is part of InnoTek LIBC. 10 * 11 * InnoTek LIBC is free software; you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License as published 13 * by the Free Software Foundation; either version 2 of the License, or 14 * (at your option) any later version. 15 * 16 * InnoTek LIBC is distributed in the hope that it will be useful, 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 * GNU Lesser General Public License for more details. 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * along with InnoTek LIBC; if not, write to the Free Software 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 * 25 */ 26 27 #ifndef __InnoTekLIBC_atexit_h__ 28 #define __InnoTekLIBC_atexit_h__ 29 30 #include <sys/types.h> 31 32 /** Entry type. */ 33 typedef enum __LIBC_ATEXITTYPE 34 { 35 __LIBC_ATEXITTYPE_FREE = 0, 36 __LIBC_ATEXITTYPE_ATEXIT, 37 __LIBC_ATEXITTYPE_ONEXIT, 38 /** State transition state. */ 39 __LIBC_ATEXITTYPE_TRANS, 40 /** The module containing the callback was unloaded. */ 41 __LIBC_ATEXITTYPE_UNLOADED 42 } __LIBC_ATEXITTYPE; 43 44 /** 45 * At exit entry. 46 */ 47 typedef struct __LIBC_ATEXIT 48 { 49 /** Entry type. */ 50 __LIBC_ATEXITTYPE volatile enmType; 51 /** The (native) module handle this callback is connected to. 52 * This will be 0 if no such association. */ 53 uintptr_t hmod; 54 union 55 { 56 /** Data for a atexit() registration. */ 57 struct 58 { 59 /** Pointer to the callback. */ 60 void (*pfnCallback)(); 61 } AtExit; 62 63 /** Data for a on_exit() registration. */ 64 struct 65 { 66 /** Pointer to the callback .*/ 67 void (*pfnCallback)(int iExit, void *pvUser); 68 /** User argument. */ 69 void *pvUser; 70 } OnExit; 71 } u; 72 } __LIBC_ATEXIT, *__LIBC_PATEXIT; 73 74 /** 75 * Chunk of at exit registrations. 76 */ 77 typedef struct __LIBC_ATEXITCHUNK 78 { 79 /** Pointer to the next chunk. */ 80 struct __LIBC_ATEXITCHUNK * volatile pNext; 81 /** Number of entries which may contain a valid callback. 82 * (May include freed entries.) */ 83 uint32_t volatile c; 84 /** Array of at exit entries. */ 85 __LIBC_ATEXIT a[64]; 86 } __LIBC_ATEXITCHUNK, *__LIBC_PATEXITCHUNK; 87 88 89 __BEGIN_DECLS 90 91 /** Pointer to the head of the exit list chain - LIFO. */ 92 extern __LIBC_PATEXITCHUNK __libc_gAtExitHead; 93 94 /** 95 * Allocate a new atexit entry. 96 * 97 * @returns Pointer to new entry. 98 * @returns NULL on failure. 99 * 100 * @param pvCallback The callback address. 101 * This used to initialize the __LIBC_AT_EXIT::hmod field. 102 */ 103 __LIBC_PATEXIT __libc_atexit_new(void *pvCallback); 104 105 /** 106 * Invalidate all atexit and on_exit callback for a 107 * module which is being unloaded. 108 * 109 * @param hmod The module handle. 110 */ 111 void __libc_atexit_unload(uintptr_t hmod); 112 113 __END_DECLS 114 115 #endif 1 #include <klibc/atexit.h> -
TabularUnified trunk/libc/include/klibc/atexit.h ¶
r2899 r2901 2 2 /** @file 3 3 * 4 * LIBC atexit() and on_exit() support.4 * kLIBC - atexit() and on_exit() internals. 5 5 * 6 * Copyright (c) 200 5knut st. osmundsen <bird@anduin.net>6 * Copyright (c) 2006 knut st. osmundsen <bird@anduin.net> 7 7 * 8 8 * 9 * This file is part of InnoTekLIBC.9 * This file is part of kLIBC. 10 10 * 11 * InnoTekLIBC is free software; you can redistribute it and/or modify11 * kLIBC is free software; you can redistribute it and/or modify 12 12 * it under the terms of the GNU Lesser General Public License as published 13 13 * by the Free Software Foundation; either version 2 of the License, or 14 14 * (at your option) any later version. 15 15 * 16 * InnoTekLIBC is distributed in the hope that it will be useful,16 * kLIBC is distributed in the hope that it will be useful, 17 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the … … 20 20 * 21 21 * You should have received a copy of the GNU Lesser General Public License 22 * along with InnoTekLIBC; if not, write to the Free Software22 * along with kLIBC; if not, write to the Free Software 23 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 24 * 25 25 */ 26 26 27 #ifndef __ InnoTekLIBC_atexit_h__28 #define __ InnoTekLIBC_atexit_h__27 #ifndef __klibc_atexit_h__ 28 #define __klibc_atexit_h__ 29 29 30 30 #include <sys/types.h> -
TabularUnified trunk/libc/include/klibc/backend.h ¶
r2745 r2901 49 49 struct statfs; 50 50 struct stat; 51 52 53 /** @defgroup __libc_Back_thread LIBC Backend - Threads 54 * @{ */ 55 56 /** 57 * Initializes the backend. 58 * Called when a frontend starts up. 59 * 60 * @returns 0 on success, non-zero on failure. 61 * @param hmod The handle of the module that's causing the frontend to start up. 62 * @param pvOS OS specific argument. 63 * @param fFlags Termination flags. 64 */ 65 int __libc_Back_init(uintptr_t hmod, void *pvOS, unsigned fFlags); 66 67 /** 68 * Terminates the backend. 69 * Called when a frontend shuts down. 70 * 71 * @returns 0 on success, non-zero on failure. 72 * @param hmod The handle of the module that's causing the frontend to shut down. 73 * @param pvOS OS specific argument. 74 * @param fFlags Termination flags. 75 */ 76 int __libc_Back_term(uintptr_t hmod, void *pvOS, unsigned fFlags); 77 78 /** 79 * Initializes the argument vector. 80 * 81 * @returns 0 on success, non-zero on failure. 82 * @param pcArgs Where to store the argument count. 83 * @param ppapszArgs Where to store the vector pointer. 84 * @param fFlags Init flags. 85 */ 86 int __libc_Back_initArgv(int *pcArgs, char ***ppapszArgs, unsigned fFlags); 87 88 /** @} */ 51 89 52 90 -
TabularUnified trunk/libc/include/klibc/initterm.h ¶
r2819 r2901 51 51 void __libc_TermDll(uintptr_t hmod, void *pvOS, unsigned fFlags); 52 52 53 extern char ** _org_environ; 54 53 55 __END_DECLS 54 56 -
TabularUnified trunk/libc/src/fbsdlibc/Makefile.kmk ¶
r2741 r2901 44 44 libc_fbsdlibc_TEMPLATE = libcsub 45 45 libc_fbsdlibc_SOURCES := \ 46 $(foreach sublib,$(LIBC_SUB_LIBRARIES), $(PATH_ TARGET)/$(sublib)/$(sublib).a)46 $(foreach sublib,$(LIBC_SUB_LIBRARIES), $(PATH_$(sublib))/$(sublib).a) 47 47 ifdef CFG_LIBC_LOGSTRICT_LIBS 48 48 LIBRARIES += libc_fbsdlibc_l 49 49 libc_fbsdlibc_l_TEMPLATE = libcsub 50 50 libc_fbsdlibc_l_SOURCES := \ 51 $(foreach sublib,$(LIBC_SUB_LIBRARIES), $(PATH_ TARGET)/$(sublib)_l/$(sublib)_l.a)51 $(foreach sublib,$(LIBC_SUB_LIBRARIES), $(PATH_$(sublib)_l)/$(sublib)_l.a) 52 52 endif 53 53 ifdef CFG_LIBC_PROFILED_LIBS … … 55 55 libc_fbsdlibc_p_TEMPLATE = libcsub 56 56 libc_fbsdlibc_p_SOURCES := \ 57 $(foreach sublib,$(LIBC_SUB_LIBRARIES), $(PATH_ TARGET)/$(sublib)_p/$(sublib)_p.a)57 $(foreach sublib,$(LIBC_SUB_LIBRARIES), $(PATH_$(sublib)_p)/$(sublib)_p.a) 58 58 endif 59 59 -
TabularUnified trunk/libc/src/libc/startup/Makefile.kmk ¶
r2819 r2901 38 38 $(PATH_LIBC_SRC)/libc/startup/exit.c \ 39 39 $(PATH_LIBC_SRC)/libc/startup/initterm.c \ 40 $(PATH_LIBC_SRC)/libc/startup/_exit.c \40 $(PATH_LIBC_SRC)/libc/startup/_exit.c 41 41 42 42 libc_libc_startup_SOURCES.os2 = \ 43 43 $(PATH_LIBC_SRC)/libc/startup/os2/dllinit-os2.c \ 44 $(PATH_LIBC_SRC)/libc/startup/os2/x86/mcountstub.s 44 45 45 libc_libc_startup_SOURCES.x86 = \46 $(PATH_LIBC_SRC)/libc/startup/386/mcountstub.s46 #libc_libc_startup_SOURCES.x86 = \ 47 # $(PATH_LIBC_SRC)/libc/startup/386/mcountstub.s 47 48 48 49 # configure the variants. */ -
TabularUnified trunk/libc/src/libc/startup/initterm.c ¶
r2819 r2901 43 43 #include <klibc/logstrict.h> 44 44 #include <klibc/backend.h> 45 #include <klibc/atexit.h> 46 #include <sys/builtin.h> 45 47 46 48 … … 56 58 *******************************************************************************/ 57 59 static int __libc_init(uintptr_t hmod, void *pvOS, unsigned fFlags); 60 static void __libc_term(uintptr_t hmod, void *pvOS, unsigned fFlags); 58 61 59 62 … … 70 73 int __libc_InitDll(uintptr_t hmod, void *pvOS, unsigned fFlags) 71 74 { 72 LIBCLOG_ENTER("hmod=%tx pvOS=%p fFlags=%#x\n", hmod, pvO s, fFlags);75 LIBCLOG_ENTER("hmod=%tx pvOS=%p fFlags=%#x\n", hmod, pvOS, fFlags); 73 76 int rc = __libc_init(hmod, pvOS, fFlags); 74 77 LIBCLOG_RETURN_INT(rc); … … 87 90 void __libc_TermDll(uintptr_t hmod, void *pvOS, unsigned fFlags) 88 91 { 89 LIBCLOG_ENTER("hmod=%tx pvOS=%p fFlags=%#x\n", hmod, pvO s, fFlags);92 LIBCLOG_ENTER("hmod=%tx pvOS=%p fFlags=%#x\n", hmod, pvOS, fFlags); 90 93 91 94 /* … … 115 118 void __libc_InitExe(uintptr_t hmod, void *pvOS, unsigned fFlags, __LIBC_PINITMAINARGS pArgs) 116 119 { 117 LIBCLOG_ENTER("hmod=%tx pvOS=%p fFlags=%#x pArgs=%p\n", hmod, pvO s, fFlags, (void *)pArgs);120 LIBCLOG_ENTER("hmod=%tx pvOS=%p fFlags=%#x pArgs=%p\n", hmod, pvOS, fFlags, (void *)pArgs); 118 121 119 122 /* … … 127 130 * Create the argument vector. 128 131 */ 129 rc = __libc_Back_initArgv(&pArgs->argc, pArgs->argv);132 rc = __libc_Back_initArgv(&pArgs->argc, &pArgs->argv, fFlags); 130 133 if (rc) 131 134 __libc_Back_panic(0, NULL, "__libc_InitExe: init failed with rc=%d\n", rc); 132 135 pArgs->envp = _org_environ; 133 136 134 LIBCLOG_RETURN_ INT(0);137 LIBCLOG_RETURN_VOID(); 135 138 } 136 139 … … 147 150 static int __libc_init(uintptr_t hmod, void *pvOS, unsigned fFlags) 148 151 { 149 LIBCLOG_ENTER("hmod=%tx pvOS=%p fFlags=%#x pArgs=%p\n", hmod, pvOs, fFlags, (void *)pArgs);152 LIBCLOG_ENTER("hmod=%tx pvOS=%p fFlags=%#x\n", hmod, pvOS, fFlags); 150 153 151 154 /* … … 188 191 * @param fFlags Initialization flags, a combination of the __LIBC_INIT_FLAGS_* \#defines. 189 192 */ 190 static int __libc_term(uintptr_t hmod, void *pvOS, unsigned fFlags) 191 { 193 static void __libc_term(uintptr_t hmod, void *pvOS, unsigned fFlags) 194 { 195 LIBCLOG_ENTER("hmod=%tx pvOS=%p fFlags=%#x\n", hmod, pvOS, fFlags); 196 192 197 /* 193 198 * Only initialize it once. … … 196 201 * the loser begin able to call into LIBC while it's begin initialized. 197 202 */ 198 const int32_t cRefs = __atomic_ increment_s32(&g_cCrtUsers);203 const int32_t cRefs = __atomic_decrement_s32(&g_cCrtUsers); 199 204 if (cRefs != 1) 200 LIBCLOG_RETURN_MSG(0, "ret 0 (g_cCrtUsers=%d)\n", cRefs); 201 205 LIBCLOG_RETURN_MSG_VOID("ret void (g_cCrtUsers=%d)\n", cRefs); 202 206 203 207 /*
Note:
See TracChangeset
for help on using the changeset viewer.