blob: de6c420c5d3bfbe0f3ce98f4ef5dbc1406eac400 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
--- qe.c.old 2005-03-13 14:37:22.967682048 +1100
+++ qe.c 2005-03-13 14:37:56.866528640 +1100
@@ -6165,16 +6165,16 @@
{ NULL },
};
-#if defined(__GNUC__) || defined(__TINYC__)
+/*#if defined(__GNUC__) || defined(__TINYC__)
static inline void init_all_modules(void)
{
int (*initcall)(void);
void **ptr;
ptr = (void **)&__initcall_first;
- for(;;) {
+ for(;;) {*/
/* NOTE: if bound checking is on, a '\0' is inserted between
- each initialized 'void *' */
+ each initialized 'void *' *//*
#if defined(__BOUNDS_CHECKING_ON)
ptr = (void **)((long)ptr + (2 * sizeof(void *)));
#else
@@ -6186,14 +6186,14 @@
initcall();
}
}
-#else
+#else*/
/* cannot use elf sections, so we initialize the modules manually */
static inline void init_all_modules(void)
{
x11_init();
c_init();
}
-#endif
+//#endif
#ifdef CONFIG_DLL
|