116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
}
#endif
#if defined(OF_APPLE_RUNTIME) || defined(OF_GNU_RUNTIME)
objc_setEnumerationMutationHandler(enumeration_mutation_handler);
#endif
#ifndef _WIN32
if ((of_pagesize = sysconf(_SC_PAGESIZE)) < 1)
of_pagesize = 4096;
#else
SYSTEM_INFO si;
GetSystemInfo(&si);
of_pagesize = si.dwPageSize;
#endif
}
+ (void)initialize
{
}
|
|
<
<
<
>
>
>
>
>
|
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
}
#endif
#if defined(OF_APPLE_RUNTIME) || defined(OF_GNU_RUNTIME)
objc_setEnumerationMutationHandler(enumeration_mutation_handler);
#endif
#if defined(_WIN32)
SYSTEM_INFO si;
GetSystemInfo(&si);
of_pagesize = si.dwPageSize;
#elif defined(_PSP)
of_pagesize = 512;
#else
if ((of_pagesize = sysconf(_SC_PAGESIZE)) < 1)
of_pagesize = 4096;
#endif
}
+ (void)initialize
{
}
|