Changeset 843 for trunk/server/source3/smbd
- Timestamp:
- Feb 7, 2014, 5:18:05 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/smbd/server.c
r757 r843 21 21 along with this program. If not, see <http://www.gnu.org/licenses/>. 22 22 */ 23 #ifdef __OS2__ 24 #define INCL_DOSEXCEPTIONS 25 #define INCL_DOSPROCESS 26 #define INCL_DOSMODULEMGR 27 #define INCL_LOADEXCEPTQ 28 #define INCL_FORKEXCEPTQ 29 #include "os2.h" 30 #include "exceptq.h" 31 #undef FILE_CREATE 32 #undef FILE_OPEN 33 #endif 23 34 24 35 #include "includes.h" … … 898 909 NTSTATUS status; 899 910 911 #ifdef __OS2__ 912 EXCEPTIONREGISTRATIONRECORD *pExRegRec; 913 LoadExceptq(pExRegRec, NULL, NULL); 914 #endif 900 915 /* 901 916 * Do this before any other talloc operation … … 1320 1335 exit_server_cleanly(NULL); 1321 1336 TALLOC_FREE(frame); 1337 #ifdef __OS2__ 1338 if (pExRegRec != NULL) 1339 UninstallExceptq(pExRegRec); 1340 #endif 1322 1341 return(0); 1323 1342 }
Note:
See TracChangeset
for help on using the changeset viewer.