Changeset 6815 for trunk/src/win32k/kKrnlLib/include/OS2KTK.h
- Timestamp:
- Sep 26, 2001, 5:52:37 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/kKrnlLib/include/OS2KTK.h
r6701 r6815 1 /* $Id: OS2KTK.h,v 1. 1 2001-09-14 01:50:16bird Exp $1 /* $Id: OS2KTK.h,v 1.2 2001-09-26 03:52:37 bird Exp $ 2 2 * 3 3 * OS2KTK - OS/2 Kernel Task. … … 98 98 */ 99 99 extern ULONG KRNLCALL TKFuBuff(PVOID pv, PVOID pvUsr, ULONG cb, ULONG fl); 100 extern ULONG KRNLCALL OrgTKFuBuff(PVOID pv, PVOID pvUsr, ULONG cb, ULONG fl); 100 101 101 102 … … 109 110 */ 110 111 extern ULONG KRNLCALL TKSuBuff(PVOID pvUsr, PVOID pv, ULONG cb, ULONG fl); 112 extern ULONG KRNLCALL OrgTKSuBuff(PVOID pvUsr, PVOID pv, ULONG cb, ULONG fl); 111 113 112 114 … … 122 124 */ 123 125 extern ULONG KRNLCALL TKFuBufLen(PLONG pcch, PVOID pvUsr, ULONG cchMax, ULONG fl, BOOL fDblNULL); 126 extern ULONG KRNLCALL OrgTKFuBufLen(PLONG pcch, PVOID pvUsr, ULONG cchMax, ULONG fl, BOOL fDblNULL); 124 127 125 128 … … 133 136 */ 134 137 extern ULONG KRNLCALL TKSuFuBuff(PVOID pvTarget, PVOID pvSource, ULONG cb, ULONG fl); 138 extern ULONG KRNLCALL OrgTKSuFuBuff(PVOID pvTarget, PVOID pvSource, ULONG cb, ULONG fl); 135 139 136 140 … … 144 148 */ 145 149 extern ULONG KRNLCALL TKPidToPTDA(PID pid, PPPTDA ppPTDA); 150 extern ULONG KRNLCALL OrgTKPidToPTDA(PID pid, PPPTDA ppPTDA); 146 151 #endif 147 152 … … 165 170 */ 166 171 extern ULONG KRNLCALL TKScanTasks(ULONG flFlags, ULONG id, PTKSCANTASKWORKER pfnWorker, ULONG ulArg); 172 extern ULONG KRNLCALL OrgTKScanTasks(ULONG flFlags, ULONG id, PTKSCANTASKWORKER pfnWorker, ULONG ulArg); 167 173 #endif 168 174 … … 170 176 /** 171 177 * Post signal to one or more processes. 172 * @returns NO_ERROR on success. 173 * On error ERROR_NOT_DESCENDANT, ERROR_SIGNAL_REFUSED, 174 * ERROR_INVALID_PROCID, ERROR_ZOMBIE_PROCESS, ERROR_SIGNAL_PENDING. (it seems) 175 * @param usSignal Signal number. 176 * @param usAction Action. 177 * 0 - the process and all children. 178 * 1 - only the process 179 * 2 - the process and all it's descendants. 180 * 3 - all processes in that screen group. 181 * @param usSignalArg Signal argument. 182 * @param usPIDSGR Process Id or Screen Group Id. 178 * @returns NO_ERROR on success. 179 * On error ERROR_NOT_DESCENDANT, ERROR_SIGNAL_REFUSED, 180 * ERROR_INVALID_PROCID, ERROR_ZOMBIE_PROCESS, ERROR_SIGNAL_PENDING. (it seems) 181 * @param usSignal Signal number. 182 * @param usAction Action. 183 * 0 - the process and all children. 184 * 1 - only the process 185 * 2 - the process and all it's descendants. 186 * 3 - all processes in that screen group. 187 * @param usSignalArg Signal argument. 188 * @param usPIDSGR Process Id or Screen Group Id. 189 * @remark Win32k Internal call. 183 190 */ 184 191 extern ULONG _Optlink POST_SIGNAL32(USHORT usSignal, USHORT usAction, USHORT usSignalArg, USHORT usPIDSGR); … … 196 203 */ 197 204 extern void KRNLCALL TKForceThread(ULONG flFlag, PTCB pTCB); 205 extern void KRNLCALL OrgTKForceThread(ULONG flFlag, PTCB pTCB); 198 206 #endif 199 207 … … 207 215 */ 208 216 extern void KRNLCALL TKForceTask(ULONG flFlag, PPTDA pPTDA, BOOL fForce); 217 extern void KRNLCALL OrgTKForceTask(ULONG flFlag, PPTDA pPTDA, BOOL fForce); 209 218 #endif 210 219 … … 216 225 */ 217 226 extern ULONG KRNLCALL TKGetPriority(PTCB pTCB); 227 extern ULONG KRNLCALL OrgTKGetPriority(PTCB pTCB); 218 228 #endif 219 229 … … 231 241 */ 232 242 extern ULONG KRNLCALL TKSleep(ULONG ulSleepId, ULONG ulTimeout, ULONG fUnInterruptable, ULONG flWakeupType); 243 extern ULONG KRNLCALL OrgTKSleep(ULONG ulSleepId, ULONG ulTimeout, ULONG fUnInterruptable, ULONG flWakeupType); 233 244 234 245 /** … … 242 253 */ 243 254 extern ULONG KRNLCALL TKWakeup(ULONG ulSleepId, ULONG flWakeupType, PULONG cWakedUp); 255 extern ULONG KRNLCALL OrgTKWakeup(ULONG ulSleepId, ULONG flWakeupType, PULONG cWakedUp); 244 256 245 257 #ifdef INCL_OS2KRNL_TCB … … 251 263 */ 252 264 extern ULONG KRNLCALL TKWakeThread(PTCB pTCB); 265 extern ULONG KRNLCALL OrgTKWakeThread(PTCB pTCB); 253 266 #endif 254 267 … … 262 275 */ 263 276 extern PTCB KRNLCALL TKQueryWakeup(ULONG ulSleepId, ULONG flWakeupType); 264 #endif 265 266 #endif 277 extern PTCB KRNLCALL OrgTKQueryWakeup(ULONG ulSleepId, ULONG flWakeupType); 278 #endif 279 280 #endif
Note:
See TracChangeset
for help on using the changeset viewer.