> 2002-07-24 Donn Terry > > * proc-api.c (rw_table): Do not include a row for PCDSTOP if the > corresponding macro is not defined. Likewise for PCNICE, PCSHOLD > and PCUNKILL. > (write_with_trace): Conditionalize out the switch branch handling > PCSHOLD if the corresponding macro is not defined. Likewise for > PRSABORT and PRSTOP. > This change will be needed by the Interix port. Donn pointed out to me that there is a typo in the following hunk (missing 'S' in PCHOLD). > *************** static struct trans rw_table[] = { > *** 419,425 **** > --- 423,431 ---- > { PCSEXIT, "PCSEXIT", "set traced syscall exit set" }, > { PCSFAULT, "PCSFAULT", "set traced fault set" }, > { PCSFPREG, "PCSFPREG", "set floating point registers" }, > + #ifdef PCHOLD /* solaris */ > { PCSHOLD, "PCSHOLD", "set signal mask" }, > + #endif > { PCSREG, "PCSREG", "set general registers" }, > { PCSSIG, "PCSSIG", "set current signal" }, > { PCSTOP, "PCSTOP", "post stop request and wait" }, I fixed this obvious typo with the following change: 2002-08-29 Donn Terry * proc-api.c (rw_table): Fix typo in #ifdef PCSHOLD (missing S). -- Joel