diff options
author | Christopher Faylor <me@cgf.cx> | 2000-05-18 18:32:26 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-05-18 18:32:26 +0000 |
commit | 5ea32366a68e32b3762dcf372ffb398d61b42b5e (patch) | |
tree | 00e8cff61e8678604c087531b5da1772e92d8956 | |
parent | 2a6a56c227b8649b3f3f3f6cd1648305e82d3aab (diff) | |
download | cygnal-5ea32366a68e32b3762dcf372ffb398d61b42b5e.tar.gz cygnal-5ea32366a68e32b3762dcf372ffb398d61b42b5e.tar.bz2 cygnal-5ea32366a68e32b3762dcf372ffb398d61b42b5e.zip |
Eliminate.
-rw-r--r-- | winsup/cygwin/external.h | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/winsup/cygwin/external.h b/winsup/cygwin/external.h deleted file mode 100644 index 745c6a81b..000000000 --- a/winsup/cygwin/external.h +++ /dev/null @@ -1,50 +0,0 @@ -/* external.h: interface to Cygwin internals from external programs. - - Copyright 1996, 1997, 1998, 1999, 2000 Cygnus Solutions. - -This file is part of Cygwin. - -This software is a copyrighted work licensed under the terms of the -Cygwin license. Please consult the file "CYGWIN_LICENSE" for -details. */ - -typedef enum - { - CW_LOCK_PINFO, - CW_UNLOCK_PINFO, - CW_GETTHREADNAME, - CW_GETPINFO, - CW_SETPINFO, - CW_SETTHREADNAME, - CW_GETVERSIONINFO, - CW_READ_V1_MOUNT_TABLES - } cygwin_getinfo_types; - -struct external_pinfo - { - pid_t pid; - pid_t ppid; - HANDLE hProcess; - DWORD dwProcessId, dwSpawnedProcessId; - uid_t uid; - gid_t gid; - pid_t pgid; - pid_t sid; - int ctty; - mode_t umask; - - long start_time; - struct rusage rusage_self; - struct rusage rusage_children; - - char progname[MAX_PATH]; - - DWORD strace_mask; - HANDLE strace_file; - - DWORD process_state; -}; - -extern "C" DWORD cygwin_internal (cygwin_getinfo_types, ...); - -#define CW_NEXTPID 0x80000000 // or with pid to get next one |