added some output to make this more usable
[feisty_meow.git] / nucleus / library / processes / launch_process.h
index a988c4c59bb5b1597b27fac9d1dcd17a0324289b..7abbe3610ab127163d2330397cf6bbb4c10c67f2 100644 (file)
@@ -28,7 +28,7 @@ namespace processes {
 class char_star_array : public basis::array<char *>
 {
 public:
 class char_star_array : public basis::array<char *>
 {
 public:
-  char_star_array() : basis::array<char *>(0, NIL, SIMPLE_COPY | EXPONE | FLUSH_INVISIBLE) {}
+  char_star_array() : basis::array<char *>(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++) {
   ~char_star_array() {
     // clean up all the memory we're holding.
     for (int i = 0; i < length(); i++) {
@@ -81,18 +81,19 @@ public:
     function. */
 
 private:
     function. */
 
 private:
-#ifdef __UNIX__
+//#ifndef _MSC_VER
   static void exiting_child_signal_handler(int sig_num);
     //!< awaits the child processes rather than leaving process handles willy nilly.
   static void exiting_child_signal_handler(int sig_num);
     //!< awaits the child processes rather than leaving process handles willy nilly.
-#endif
-#ifdef __WIN32__
+/*
+#else
   static bool event_poll(tagMSG &message);
     //!< tries to process one win32 event and retrieve the "message" from it.
   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
     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
 #endif
+*/
   
 };
 
   
 };