X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Flibrary%2Fprocesses%2Frendezvous.cpp;h=b93d07646aa83c6ef10f7f33ba7c7cd6ab523083;hb=724b4724b27d928cbd69ce5ddc29eff22bf252ad;hp=46545a309e739786783ccf8776c04d412cda2bc4;hpb=26ec1dc25e8142729a1ebf3058d48289e2548a50;p=feisty_meow.git diff --git a/nucleus/library/processes/rendezvous.cpp b/nucleus/library/processes/rendezvous.cpp index 46545a30..b93d0764 100644 --- a/nucleus/library/processes/rendezvous.cpp +++ b/nucleus/library/processes/rendezvous.cpp @@ -68,7 +68,7 @@ astring unix_rendez_file(const astring &lock_name) #endif rendezvous::rendezvous(const astring &root_name) -: _handle(NIL), +: _handle(NULL_POINTER), _locked(false), _root_name(new astring(root_name)) { @@ -90,7 +90,7 @@ rendezvous::rendezvous(const astring &root_name) _handle = locking_file; #endif #ifdef __WIN32__ - _handle = CreateMutex(NIL, false, to_unicode_temp(lock_name)); + _handle = CreateMutex(NULL_POINTER, false, to_unicode_temp(lock_name)); if (!_handle) return; #endif } @@ -120,7 +120,7 @@ rendezvous::~rendezvous() } fclose((FILE *)_handle); - _handle = NIL; + _handle = NULL_POINTER; } #endif #ifdef __WIN32__