X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Flibrary%2Fprocesses%2Frendezvous.cpp;h=b93d07646aa83c6ef10f7f33ba7c7cd6ab523083;hb=724b4724b27d928cbd69ce5ddc29eff22bf252ad;hp=3f3385e8e109c064cbc72232ad3cec02c55dd2a2;hpb=3ea085ec301ed1399dfa1e9f3a240312dc95410b;p=feisty_meow.git diff --git a/nucleus/library/processes/rendezvous.cpp b/nucleus/library/processes/rendezvous.cpp index 3f3385e8..b93d0764 100644 --- a/nucleus/library/processes/rendezvous.cpp +++ b/nucleus/library/processes/rendezvous.cpp @@ -59,10 +59,7 @@ astring unix_rendez_file(const astring &lock_name) filename::detooth_filename(clean_name); // make sure our target directory exists. - // this choice is only user specific. -// astring tmp_dir = portable::env_string("TMP") + "/rendezvous"; - - // this choice uses a system-wide location. + // use a system-wide location for rendezvous state files. astring tmp_dir = "/tmp/rendezvous"; mkdir(tmp_dir.observe(), 0777); @@ -71,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)) { @@ -93,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 } @@ -123,7 +120,7 @@ rendezvous::~rendezvous() } fclose((FILE *)_handle); - _handle = NIL; + _handle = NULL_POINTER; } #endif #ifdef __WIN32__