Changeset 863


Ignore:
Timestamp:
May 13, 2014, 12:03:45 PM (11 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: except readded

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/server/source3/smbd/server.c

    r862 r863  
    2121   along with this program.  If not, see <http://www.gnu.org/licenses/>.
    2222*/
     23
     24#ifdef __OS2__
     25#define INCL_DOSEXCEPTIONS
     26#define INCL_DOSPROCESS
     27#define INCL_DOSMODULEMGR
     28#define INCL_LOADEXCEPTQ
     29#define INCL_FORKEXCEPTQ
     30#include "os2.h"
     31#include "exceptq.h"
     32#undef FILE_CREATE
     33#undef FILE_OPEN
     34#endif
    2335
    2436#include "includes.h"
     
    944956        NTSTATUS status;
    945957
     958#ifdef __OS2__
     959        EXCEPTIONREGISTRATIONRECORD ExRegRec;
     960        LoadExceptq(&ExRegRec, NULL, NULL);
     961#endif
    946962        /*
    947963         * Do this before any other talloc operation
     
    13731389        exit_server_cleanly(NULL);
    13741390        TALLOC_FREE(frame);
     1391#ifdef __OS2__
     1392        UninstallExceptq(&ExRegRec);
     1393#endif
    13751394        return(0);
    13761395}
Note: See TracChangeset for help on using the changeset viewer.