X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fntproc.c;h=790454b1bb9b9d262969419b763b2b9ea19141b7;hb=70ce0e9de23af30a3f45778adf6424cce0345dd8;hp=d1daca351089ae0dc9a2cf429a28296c76cb2074;hpb=21db8709c0c2dcedbd278c7fe571290d5ce80a71;p=chise%2Fxemacs-chise.git.1 diff --git a/src/ntproc.c b/src/ntproc.c index d1daca3..790454b 100644 --- a/src/ntproc.c +++ b/src/ntproc.c @@ -170,7 +170,7 @@ delete_child (child_process *cp) /* Should not be deleting a child that is still needed. */ for (i = 0; i < MAXDESC; i++) if (fd_info[i].cp == cp) - abort (); + ABORT (); if (!CHILD_ACTIVE (cp)) return; @@ -252,7 +252,7 @@ _sys_read_ahead (int fd) || (fd_info[fd].flags & FILE_READ) == 0) { /* fd is not a pipe or socket */ - abort (); + ABORT (); } cp->status = STATUS_READ_IN_PROGRESS; @@ -404,7 +404,7 @@ create_child (const char *exe, char *cmdline, char *env, SECURITY_DESCRIPTOR sec_desc; char dir[ MAXPATHLEN ]; - if (cp == NULL) abort (); + if (cp == NULL) ABORT (); xzero (start); start.cb = sizeof (start);