+Sat Oct 26 07:15:14 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
+
+ * config/alpha/alpha-osf3.mh (XM_CLIBS): Add -lm for OSF/1-4.0.
+
+ * procfs.c (proc_set_exec_trap): Under Alpha OSF/1-4.0, tracing
+ the entry to the exit system call to detect termination of the
+ inferior stopped working. Trace termination of the inferior via
+ PRFS_STOPTERM instead.
+ (procfs_init_inferior): Do not trace entry to exit system call
+ if PIOCSSPCACT is defined.
+ (procfs_wait): Handle PR_DEAD event, which signals the termination
+ of the inferior if PRFS_STOPTERM is set.
+
+ * mdebugread.c (parse_partial_symbols): Ignore stNil section
+ start address symbols.
+
+ * sparc-tdep.c (get_saved_register): Get saved PC from the
+ frame info if not in innermost frame.
+
+Thu Oct 24 10:51:45 1996 Mark Alexander <marka@cygnus.com>
+
+ * dbxread.c (process_one_symbol): Interpret end-of-function
+ markers correctly; this fixes problem on Vr5000 where all
+ functions in a module had the same address.
+ * configure.in, configure.tgt, configure.host, gdbserver/configure.in:
+ Correct for pc-linux-gnu problem in config.guess.
+ * configure: Regenerate.
+
Thu Oct 24 10:06:58 1996 Stu Grossman (grossman@critters.cygnus.com)
* dbxread.c: Don't swap symbols in place, since internal and
pip = create_procinfo (pid);
+#ifndef PIOCSSPCACT
procfs_set_syscall_trap (pip, SYS_exit, PROCFS_SYSCALL_ENTRY,
procfs_exit_handler);
-#ifndef PRFS_STOPEXEC
#ifdef SYS_exec
procfs_set_syscall_trap (pip, SYS_exec, PROCFS_SYSCALL_EXIT,
procfs_exec_handler);
procfs_set_syscall_trap (pip, SYS_execve, PROCFS_SYSCALL_EXIT,
procfs_exec_handler);
#endif
-#endif /* PRFS_STOPEXEC */
+#endif /* PIOCSSPCACT */
/* Setup traps on exit from sproc() */
#ifdef PIOCSSPCACT
/* Under Alpha OSF/1 we have to use a PIOCSSPCACT ioctl to trace
- exits from exec system calls because of the user level loader. */
+ exits from exec system calls because of the user level loader.
+ Starting with OSF/1-4.0, tracing the entry to the exit system
+ call no longer works. So we have to use PRFS_STOPTERM to trace
+ termination of the inferior. */
{
int prfs_flags;
gdb_flush (gdb_stderr);
_exit (127);
}
- prfs_flags |= PRFS_STOPEXEC;
+ prfs_flags |= PRFS_STOPEXEC | PRFS_STOPTERM;
if (ioctl (fd, PIOCSSPCACT, &prfs_flags) < 0)
{
perror (procname);
_exit (127);
}
}
-#else
+#else /* PIOCSSPCACT */
/* GW: Rationale...
Not all systems with /proc have all the exec* syscalls with the same
names. On the SGI, for example, there is no SYS_exec, but there
gdb_flush (gdb_stderr);
_exit (127);
}
-#endif
praddset (&entryset, SYS_exit);
gdb_flush (gdb_stderr);
_exit (126);
}
+#endif /* PIOCSSPCACT */
/* Turn off inherit-on-fork flag so that all grand-children of gdb
start with tracing flags cleared. */
error ("PR_SYSEXIT, unhandled system call %d", what);
}
break;
+#ifdef PR_DEAD
+ case (short)PR_DEAD:
+ {
+ int dummy;
+
+ /* The inferior process is about to terminate.
+ pr_what has the process's exit or return value.
+ A PIOCRUN ioctl must be used to restart the process so it
+ can finish exiting. */
+
+ pi->prrun.pr_flags = PRCFAULT;
+
+ if (ioctl (pi->fd, PIOCRUN, &pi->prrun) != 0)
+ perror_with_name (pi->pathname);
+
+ if (wait (&dummy) < 0)
+ rtnval = -1;
+ statval = pi->prstatus.pr_what;
+ }
+ break;
+#endif
case PR_REQUESTED:
statval = (SIGSTOP << 8) | 0177;
break;