gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 6 of 6 for funcall:Lock from t2ex (0.01 seconds)
t2ex
t2ex_source/kernel/extension/memory/t2ex/memmgr.c - 15.3KB - 590 lines
135: LOCAL FastLock  MemLock = { -1, -1 };
136: #define LockMEM()       Lock(&MemLock)
137: #define UnlockMEM()     Unlock(&MemLock)
t2ex_source/kernel/extension/memory/t2ex/segmgr.h - 3.1KB - 75 lines
57: IMPORT  FastLock SegLock;
58: #define LockSEG()       Lock(&SegLock)
59: #define UnlockSEG()     Unlock(&SegLock)
t2ex_source/t2ex/datetime/src/service.c - 4.7KB - 184 lines
113: 
114:         Lock(&dtLock);
115: 
More results from service.c
t2ex_source/t2ex/load/src/pminfo.h - 3.2KB - 98 lines
65: 
66: #define LockPM()        Lock(&pmLock);
67: #define UnlockPM()      Unlock(&pmLock);
t2ex_source/t2ex/load/src/service.c - 4.7KB - 167 lines
116:                 /* Stop other tasks from executing SVC */
117:                 Lock(&pmLock);
118: 
t2ex_source/t2ex/load/src/service.h - 2.7KB - 78 lines
66: IMPORT  FastLock pmLock;
67: #define LockPM()        Lock(&pmLock);
68: #define UnlockPM()      Unlock(&pmLock);