Changeset 5276 for trunk/include/odinwrap.h
- Timestamp:
- Feb 28, 2001, 9:22:44 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/odinwrap.h
r4770 r5276 1 /* $Id: odinwrap.h,v 1.29 2000-12-09 16:04:24 phaller Exp $ */2 3 1 /* 4 2 * Project Odin Software License can be found in LICENSE.TXT … … 59 57 60 58 // --------------------------------------------------------------------------- 61 extern int IsExeStarted(); //kernel3262 59 extern unsigned long int WIN32API GetCurrentThreadId(); //kernel32 63 60 … … 108 105 PROFILE_STOP(a) \ 109 106 ODIN_HEAPCHECK(); \ 110 if (sel != GetFS() && IsExeStarted()) \ 111 dprintf(("ERROR: FS: for thread %08xh corrupted by "a, GetCurrentThreadId())); 107 if (sel != GetFS()) { \ 108 SetFS(sel); \ 109 dprintf(("WARNING: FS: for thread %08xh corrupted by "a, GetCurrentThreadId())); \ 110 } 112 111 113 112
Note:
See TracChangeset
for help on using the changeset viewer.