* include/process.h: Move here from include/cygwin subdir.

* exec.cc: Change include of process.h to reflect the fact that it's
	now back in include.
	* spawn.cc: Ditto.
	* syscalls.cc: Ditto.
This commit is contained in:
Corinna Vinschen 2012-02-07 17:15:07 +00:00
parent 3e9c8f2e81
commit 3b8698d7be
5 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,11 @@
2012-02-07 Corinna Vinschen <corinna@vinschen.de>
* include/process.h: Move here from include/cygwin subdir.
* exec.cc: Change include of process.h to reflect the fact that it's
now back in include.
* spawn.cc: Ditto.
* syscalls.cc: Ditto.
2012-02-07 Christopher Faylor <me.cygwin2012@cgf.cx>
* cygheap.cc (init_cygheap::manage_console_count): Delete.

View File

@ -9,7 +9,7 @@ Cygwin license. Please consult the file "CYGWIN_LICENSE" for
details. */
#include "winsup.h"
#include <cygwin/process.h>
#include <process.h>
#include "cygerrno.h"
#include "path.h"
#include "environ.h"

View File

@ -12,7 +12,7 @@ details. */
#include "winsup.h"
#include <stdlib.h>
#include <unistd.h>
#include <cygwin/process.h>
#include <process.h>
#include <sys/wait.h>
#include <wingdi.h>
#include <winuser.h>

View File

@ -31,7 +31,7 @@ details. */
#include <sys/statvfs.h> /* needed for statvfs */
#include <stdlib.h>
#include <stdio.h>
#include <cygwin/process.h>
#include <process.h>
#include <utmp.h>
#include <utmpx.h>
#include <sys/uio.h>