diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 32 |
1 files changed, 1 insertions, 31 deletions
diff --git a/src/process.c b/src/process.c index 6eb0f9e2ab4..9015383b8b5 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -140,12 +140,6 @@ extern int sys_select (int, fd_set *, fd_set *, fd_set *, | |||
| 140 | #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3) | 140 | #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3) |
| 141 | # pragma GCC diagnostic ignored "-Wstrict-overflow" | 141 | # pragma GCC diagnostic ignored "-Wstrict-overflow" |
| 142 | #endif | 142 | #endif |
| 143 | |||
| 144 | Lisp_Object Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname, Qtpgid; | ||
| 145 | Lisp_Object Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcstime; | ||
| 146 | Lisp_Object Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs; | ||
| 147 | Lisp_Object Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtime, Qctime; | ||
| 148 | Lisp_Object QCname, QCtype; | ||
| 149 | 143 | ||
| 150 | /* True if keyboard input is on hold, zero otherwise. */ | 144 | /* True if keyboard input is on hold, zero otherwise. */ |
| 151 | 145 | ||
| @@ -191,27 +185,6 @@ process_socket (int domain, int type, int protocol) | |||
| 191 | # define socket(domain, type, protocol) process_socket (domain, type, protocol) | 185 | # define socket(domain, type, protocol) process_socket (domain, type, protocol) |
| 192 | #endif | 186 | #endif |
| 193 | 187 | ||
| 194 | Lisp_Object Qprocessp; | ||
| 195 | static Lisp_Object Qrun, Qstop, Qsignal; | ||
| 196 | static Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten; | ||
| 197 | Lisp_Object Qlocal; | ||
| 198 | static Lisp_Object Qipv4, Qdatagram, Qseqpacket; | ||
| 199 | static Lisp_Object Qreal, Qnetwork, Qserial; | ||
| 200 | #ifdef AF_INET6 | ||
| 201 | static Lisp_Object Qipv6; | ||
| 202 | #endif | ||
| 203 | static Lisp_Object QCport, QCprocess; | ||
| 204 | Lisp_Object QCspeed; | ||
| 205 | Lisp_Object QCbytesize, QCstopbits, QCparity, Qodd, Qeven; | ||
| 206 | Lisp_Object QCflowcontrol, Qhw, Qsw, QCsummary; | ||
| 207 | static Lisp_Object QCbuffer, QChost, QCservice; | ||
| 208 | static Lisp_Object QClocal, QCremote, QCcoding; | ||
| 209 | static Lisp_Object QCserver, QCnowait, QCnoquery, QCstop; | ||
| 210 | static Lisp_Object QCsentinel, QClog, QCoptions, QCplist; | ||
| 211 | static Lisp_Object Qlast_nonmenu_event; | ||
| 212 | static Lisp_Object Qinternal_default_process_sentinel; | ||
| 213 | static Lisp_Object Qinternal_default_process_filter; | ||
| 214 | |||
| 215 | #define NETCONN_P(p) (EQ (XPROCESS (p)->type, Qnetwork)) | 188 | #define NETCONN_P(p) (EQ (XPROCESS (p)->type, Qnetwork)) |
| 216 | #define NETCONN1_P(p) (EQ (p->type, Qnetwork)) | 189 | #define NETCONN1_P(p) (EQ (p->type, Qnetwork)) |
| 217 | #define SERIALCONN_P(p) (EQ (XPROCESS (p)->type, Qserial)) | 190 | #define SERIALCONN_P(p) (EQ (XPROCESS (p)->type, Qserial)) |
| @@ -7228,10 +7201,7 @@ syms_of_process (void) | |||
| 7228 | DEFSYM (Qsignal, "signal"); | 7201 | DEFSYM (Qsignal, "signal"); |
| 7229 | 7202 | ||
| 7230 | /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it | 7203 | /* Qexit is already staticpro'd by syms_of_eval; don't staticpro it |
| 7231 | here again. | 7204 | here again. */ |
| 7232 | |||
| 7233 | Qexit = intern_c_string ("exit"); | ||
| 7234 | staticpro (&Qexit); */ | ||
| 7235 | 7205 | ||
| 7236 | DEFSYM (Qopen, "open"); | 7206 | DEFSYM (Qopen, "open"); |
| 7237 | DEFSYM (Qclosed, "closed"); | 7207 | DEFSYM (Qclosed, "closed"); |