X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Flibrary%2Fprocesses%2Flaunch_process.h;h=7abbe3610ab127163d2330397cf6bbb4c10c67f2;hb=ea399ea4e4135ab47c931e5c3adaece7d0cf9ec3;hp=44ce4857d57898fe3cb6d503e84b1142b5620d1a;hpb=24b2947ed9364f3e83fa1bb544ff6b1fdbf0428f;p=feisty_meow.git diff --git a/nucleus/library/processes/launch_process.h b/nucleus/library/processes/launch_process.h index 44ce4857..7abbe361 100644 --- a/nucleus/library/processes/launch_process.h +++ b/nucleus/library/processes/launch_process.h @@ -28,7 +28,7 @@ namespace processes { class char_star_array : public basis::array { public: - char_star_array() : basis::array(0, NIL, SIMPLE_COPY | EXPONE | FLUSH_INVISIBLE) {} + char_star_array() : basis::array(0, NULL_POINTER, SIMPLE_COPY | EXPONE | FLUSH_INVISIBLE) {} ~char_star_array() { // clean up all the memory we're holding. for (int i = 0; i < length(); i++) { @@ -81,17 +81,19 @@ public: function. */ private: -#ifndef _MSC_VER +//#ifndef _MSC_VER static void exiting_child_signal_handler(int sig_num); //!< awaits the child processes rather than leaving process handles willy nilly. +/* #else static bool event_poll(tagMSG &message); //!< tries to process one win32 event and retrieve the "message" from it. - /*!< this is a very general poll and will retrieve any message that's + / *!< this is a very general poll and will retrieve any message that's available for the current thread. the message is actually processed here also, by calling translate and dispatch. the returned structure - is mainly interesting for knowing what was done. */ + is mainly interesting for knowing what was done. * / #endif +*/ };