summaryrefslogtreecommitdiff
path: root/src/w32.h
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2013-11-16 17:50:56 +0200
committerEli Zaretskii <eliz@gnu.org>2013-11-16 17:50:56 +0200
commit8dc689ce3897b6a11877ecf9140fec859f1b95a5 (patch)
tree7a1c83c9a18720f7761e2e4fbd2f4dc8be75e9e0 /src/w32.h
parentf5c287f4fa22070b4b65fc6e731dd359daa7acce (diff)
downloademacs-8dc689ce3897b6a11877ecf9140fec859f1b95a5.tar.gz
Converted sys_unlink and sys_rmdir, got rid of pending deletion in w32proc.c.
Diffstat (limited to 'src/w32.h')
-rw-r--r--src/w32.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/w32.h b/src/w32.h
index 80756e8e4ff..5e0f63d2433 100644
--- a/src/w32.h
+++ b/src/w32.h
@@ -103,12 +103,6 @@ typedef struct _child_process
OVERLAPPED ovl_read;
/* Used for async write operations on serial comm ports. */
OVERLAPPED ovl_write;
- /* Input file, if any, for this subprocess. Should only be non-NULL
- for async subprocesses. */
- char *input_file;
- /* If non-zero, the subprocess input file is temporary and should be
- deleted when the subprocess exits. */
- int pending_deletion;
} child_process;
#define MAXDESC FD_SETSIZE
@@ -199,8 +193,6 @@ extern int pipe2 (int *, int);
extern void set_process_dir (char *);
extern int sys_spawnve (int, char *, char **, char **);
extern void register_child (pid_t, int);
-extern void record_infile (pid_t, char *);
-extern void record_pending_deletion (char *);
extern void sys_sleep (int);
extern int sys_link (const char *, const char *);