You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@apr.apache.org by bu...@apache.org on 2007/05/09 15:11:58 UTC

DO NOT REPLY [Bug 42365] New: - Suppress console for apr_proc_create() created process

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42365>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42365

           Summary: Suppress console for apr_proc_create() created process
           Product: APR
           Version: 1.2.8
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: enhancement
          Priority: P3
         Component: APR
        AssignedTo: bugs@apr.apache.org
        ReportedBy: Joe.Mudd@sas.com


I am creating child processes with:

   aStatus = apr_procattr_io_set(attr, APR_CHILD_BLOCK, APR_PARENT_BLOCK,
                                 APR_PARENT_BLOCK);
   ...
   aStatus = apr_procattr_cmdtype_set(attr, APR_SHELLCMD);

When created on Windows a console window is created.  I have added a new 
procattr call (apr_procattr_terminal_set) to allow the suppression of the 
console window.  Below are the diffs associated with the update.

Thanks for your consideration.

--- ../apr-1.2.8/./threadproc/netware/proc.c	Thu Aug  3 07:05:28 2006
+++ ./threadproc/netware/proc.c	Wed May  9 08:35:35 2007
@@ -47,6 +47,7 @@
     /* Default to a current path since NetWare doesn't handle it very well */
     apr_filepath_get(&((*new)->currdir), APR_FILEPATH_NATIVE, pool);
     (*new)->detached = 1;
+    (*new)->terminal = 1;
     return APR_SUCCESS;
 
 }
@@ -183,6 +184,13 @@
     attr->detached = detach;
     return APR_SUCCESS;
 }
+
+APR_DECLARE(apr_status_t) apr_procattr_terminal_set(apr_procattr_t *attr,
+                                                 apr_int32_t terminal)
+{
+    attr->terminal = terminal;
+    return APR_SUCCESS;
+}
 
 #if APR_HAS_FORK
 APR_DECLARE(apr_status_t) apr_proc_fork(apr_proc_t *proc, apr_pool_t *pool)
--- ../apr-1.2.8/./threadproc/win32/proc.c	Thu Aug  3 07:05:28 2006
+++ ./threadproc/win32/proc.c	Wed May  9 08:38:57 2007
@@ -58,6 +58,7 @@
     (*new) = (apr_procattr_t *)apr_pcalloc(pool, sizeof(apr_procattr_t));
     (*new)->pool = pool;
     (*new)->cmdtype = APR_PROGRAM;
+    (*new)->terminal = 1;
     return APR_SUCCESS;
 }
 
@@ -201,6 +202,13 @@
     return APR_SUCCESS;
 }
 
+APR_DECLARE(apr_status_t) apr_procattr_terminal_set(apr_procattr_t *attr,
+                                                 apr_int32_t terminal)
+{
+    attr->terminal = terminal;
+    return APR_SUCCESS;
+}
+
 static apr_status_t attr_cleanup(void *theattr)
 {
     apr_procattr_t *attr = (apr_procattr_t *)theattr;    
@@ -396,6 +404,15 @@
     new->out = attr->parent_out;
     new->err = attr->parent_err;
 
+    if (!attr->terminal) {
+        /* If we are launching a console application that is to run
+         * without a console window and we are not Win9x, let Windows
+         * know that we do not want a console.
+         */
+        if (apr_os_level >= APR_WIN_NT)
+             dwCreationFlags |= CREATE_NO_WINDOW;
+    }
+
     if (attr->detached) {
         /* If we are creating ourselves detached, Then we should hide the
          * window we are starting in.  And we had better redfine our
--- ../apr-1.2.8/./threadproc/beos/proc.c	Thu Aug  3 07:05:28 2006
+++ ./threadproc/beos/proc.c	Wed May  9 08:34:30 2007
@@ -41,6 +41,7 @@
     (*new)->currdir = NULL; 
     (*new)->cmdtype = APR_PROGRAM;
     (*new)->detached = 0;
+    (*new)->terminal = 1;
     return APR_SUCCESS;
 }
 
@@ -141,6 +142,13 @@
     attr->detached = detach;
     return APR_SUCCESS;
 }
+
+APR_DECLARE(apr_status_t) apr_procattr_terminal_set(apr_procattr_t *attr,
+                                                 apr_int32_t terminal)
+{
+    attr->terminal = terminal;
+    return APR_SUCCESS;
+}
 
 APR_DECLARE(apr_status_t) apr_proc_fork(apr_proc_t *proc, apr_pool_t *pool)
 {
--- ../apr-1.2.8/./threadproc/unix/proc.c	Thu Aug  3 07:05:28 2006
+++ ./threadproc/unix/proc.c	Wed May  9 08:37:21 2007
@@ -31,6 +31,7 @@
     (*new)->pool = pool;
     (*new)->cmdtype = APR_PROGRAM;
     (*new)->uid = (*new)->gid = -1;
+    (*new)->terminal = 1;
     return APR_SUCCESS;
 }
 
@@ -188,6 +189,13 @@
     attr->detached = detach;
     return APR_SUCCESS;
 }
+
+APR_DECLARE(apr_status_t) apr_procattr_terminal_set(apr_procattr_t *attr,
+                                                 apr_int32_t terminal)
+{
+    attr->terminal = terminal;
+    return APR_SUCCESS;
+}
 
 APR_DECLARE(apr_status_t) apr_proc_fork(apr_proc_t *proc, apr_pool_t *pool)
 {
--- ../apr-1.2.8/./threadproc/os2/proc.c	Thu Aug  3 07:05:28 2006
+++ ./threadproc/os2/proc.c	Wed May  9 08:36:38 2007
@@ -52,6 +52,7 @@
     (*new)->currdir = NULL; 
     (*new)->cmdtype = APR_PROGRAM;
     (*new)->detached = FALSE;
+    (*new)->terminal = TRUE;
     return APR_SUCCESS;
 }
 
@@ -188,6 +189,13 @@
     attr->detached = detach;
     return APR_SUCCESS;
 }
+
+APR_DECLARE(apr_status_t) apr_procattr_terminal_set(apr_procattr_t *attr,
+                                                 apr_int32_t terminal)
+{
+    attr->terminal = terminal;
+    return APR_SUCCESS;
+}
 
 APR_DECLARE(apr_status_t) apr_proc_fork(apr_proc_t *proc, apr_pool_t *pool)
 {
--- ../apr-1.2.8/./include/apr_thread_proc.h	Thu Aug  3 07:05:28 2006
+++ ./include/apr_thread_proc.h	Wed May  9 08:31:50 2007
@@ -473,6 +473,16 @@
 APR_DECLARE(apr_status_t) apr_procattr_detach_set(apr_procattr_t *attr, 
                                                  apr_int32_t detach);
 
+
+/**
+ * Determine if the child should start with a terminal.
+ * @param attr The procattr we care about.
+ * @param background Should the child start with a terminal?  Default is yes.
+ */
+APR_DECLARE(apr_status_t) apr_procattr_terminal_set(apr_procattr_t *attr,
+                                                 apr_int32_t terminal);
+
+
 #if APR_HAVE_STRUCT_RLIMIT
 /**
  * Set the Resource Utilization limits when starting a new process.
--- ../apr-1.2.8/./include/arch/netware/apr_arch_threadproc.h	Thu Aug  3 
07:05:28 2006
+++ ./include/arch/netware/apr_arch_threadproc.h	Wed May  9 08:40:28 2007
@@ -61,6 +61,7 @@
     char *currdir;
     apr_int32_t cmdtype;
     apr_int32_t detached;
+    apr_int32_t terminal;
     apr_int32_t addrspace;
 };
 
--- ../apr-1.2.8/./include/arch/win32/apr_arch_threadproc.h	Thu Aug  3 
07:05:28 2006
+++ ./include/arch/win32/apr_arch_threadproc.h	Wed May  9 08:39:47 2007
@@ -55,6 +55,7 @@
     char *currdir;
     apr_int32_t cmdtype;
     apr_int32_t detached;
+    apr_int32_t terminal;
     apr_child_errfn_t *errfn;
     apr_int32_t errchk;
 #ifndef _WIN32_WCE
--- ../apr-1.2.8/./include/arch/beos/apr_arch_threadproc.h	Thu Aug  3 
07:05:28 2006
+++ ./include/arch/beos/apr_arch_threadproc.h	Wed May  9 08:40:48 2007
@@ -84,6 +84,7 @@
     char *currdir;
     apr_int32_t cmdtype;
     apr_int32_t detached;
+    apr_int32_t terminal;
 };
 
 struct apr_thread_once_t {
--- ../apr-1.2.8/./include/arch/unix/apr_arch_threadproc.h	Thu Aug  3 
07:05:28 2006
+++ ./include/arch/unix/apr_arch_threadproc.h	Wed May  9 08:40:01 2007
@@ -84,6 +84,7 @@
     char *currdir;
     apr_int32_t cmdtype;
     apr_int32_t detached;
+    apr_int32_t terminal;
 #ifdef RLIMIT_CPU
     struct rlimit *limit_cpu;
 #endif
--- ../apr-1.2.8/./include/arch/os2/apr_arch_threadproc.h	Thu Aug  3 
07:05:28 2006
+++ ./include/arch/os2/apr_arch_threadproc.h	Wed May  9 08:40:15 2007
@@ -56,6 +56,7 @@
     char *currdir;
     apr_int32_t cmdtype;
     apr_int32_t detached;
+    apr_int32_t terminal;
 };
 
 struct apr_thread_once_t {

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org


DO NOT REPLY [Bug 42365] - Suppress console for apr_proc_create() created process

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42365>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42365





------- Additional Comments From Joe.Mudd@sas.com  2007-07-13 14:58 -------
Created an attachment (id=20511)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=20511&action=view)
apr_thread_proc.h.diff

Adding individual diffs for the pieces/parts affected.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org


DO NOT REPLY [Bug 42365] - Suppress console for apr_proc_create() created process

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42365>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42365


davi@apache.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |PatchAvailable




-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org


DO NOT REPLY [Bug 42365] - Suppress console for apr_proc_create() created process

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42365>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42365





------- Additional Comments From Joe.Mudd@sas.com  2007-07-13 15:01 -------
Created an attachment (id=20515)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=20515&action=view)
proc.c.diff.os2 (threadproc/os2/proc.c)


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org


DO NOT REPLY [Bug 42365] - Suppress console for apr_proc_create() created process

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42365>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42365





------- Additional Comments From Joe.Mudd@sas.com  2007-07-13 15:02 -------
Updated the diffs to be against the latest greatest source and packaged them up 
as individual attachments.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org


DO NOT REPLY [Bug 42365] - Suppress console for apr_proc_create() created process

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42365>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42365





------- Additional Comments From Joe.Mudd@sas.com  2007-07-13 15:00 -------
Created an attachment (id=20514)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=20514&action=view)
proc.c.diff.netware (threadproc/netware/proc.c)


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org


DO NOT REPLY [Bug 42365] - Suppress console for apr_proc_create() created process

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42365>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42365





------- Additional Comments From Joe.Mudd@sas.com  2007-09-17 13:56 -------
Do you require a new patch for 1.2 that always suppresses the console window?

I agree that the window should be suppressed.  The current patch was written to 
keep backwards compatibility in case there were uses that relied on the current 
behavior.

Also, unless indicated otherwise, I do not see a need for a new API in 1.3 nor 
2.0 once the windows source is updated to always suppress the console window.

Thanks.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org


DO NOT REPLY [Bug 42365] - Suppress console for apr_proc_create() created process

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42365>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42365





------- Additional Comments From Joe.Mudd@sas.com  2007-07-13 15:00 -------
Created an attachment (id=20513)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=20513&action=view)
proc.c.diff.beos (threadproc/beos/proc.c)


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org


DO NOT REPLY [Bug 42365] - Suppress console for apr_proc_create() created process

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42365>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42365





------- Additional Comments From Joe.Mudd@sas.com  2007-07-13 15:01 -------
Created an attachment (id=20517)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=20517&action=view)
proc.c.diff.win32 (threadproc/win32/proc.c)


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org


DO NOT REPLY [Bug 42365] - Suppress console for apr_proc_create() created process

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42365>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42365





------- Additional Comments From davi@haxent.com.br  2007-05-12 10:49 -------
(In reply to comment #1)
> A stub implementation of apr_procattr_terminal_set is missing for threadproc/unix.
> Also, next time submit the patch as an attachment. Thanks.

Oops, it's not. But the terminal flag won't be used then, do we really need it ?

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org


DO NOT REPLY [Bug 42365] - Suppress console for apr_proc_create() created process

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42365>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42365


wrowe@apache.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|PatchAvailable              |




------- Additional Comments From wrowe@apache.org  2007-07-21 16:49 -------
By default, we should be creating processes without a visible console.

Simply put, APR needs to create similar behavior across platforms, and
relieve the application author from dealing with platform quirks (such
as console windows popping up.)

I don't have a huge issue with offering console windows as a platform
feature where they can be supported, in apr 1.3.0 or later, but certainly
wouldn't want to see this become the default behavior.  terminal below
must default to 0.

So the gist of your patch (eliminating console windows) would be a good
addition across APR 0.9, 1.2 and trunk.  Adding the option would be of
interest only as a new API in trunk for version 1.3 or 2.0 (whichever
comes first) per our versioning rules.

Bottom line rule to apply is the principle of least surprise to authors
as they port from platform to platform.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org


DO NOT REPLY [Bug 42365] - Suppress console for apr_proc_create() created process

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42365>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42365





------- Additional Comments From Joe.Mudd@sas.com  2007-07-13 14:59 -------
Created an attachment (id=20512)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=20512&action=view)
apr_arch_threadproc.h.diff.win32 (include/arch/win32/...)


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org


DO NOT REPLY [Bug 42365] - Suppress console for apr_proc_create() created process

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42365>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42365





------- Additional Comments From Joe.Mudd@sas.com  2007-07-13 15:01 -------
Created an attachment (id=20516)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=20516&action=view)
proc.c.diff.unix (threadproc/unix/proc.c)


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org


DO NOT REPLY [Bug 42365] - Suppress console for apr_proc_create() created process

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42365>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42365





------- Additional Comments From Joe.Mudd@sas.com  2007-05-14 04:23 -------
You are correct.  The terminal flag is not needed in threadproc/unix.  I placed 
it there in case someone else found a need.  It can be removed.

Sorry about the inline vs attachment.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org


DO NOT REPLY [Bug 42365] - Suppress console for apr_proc_create() created process

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42365>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42365





------- Additional Comments From davi@haxent.com.br  2007-05-12 10:46 -------
A stub implementation of apr_procattr_terminal_set is missing for threadproc/unix.
Also, next time submit the patch as an attachment. Thanks.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@apr.apache.org
For additional commands, e-mail: bugs-help@apr.apache.org