summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/syscalls.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-03-09 21:04:05 +0000
committerChristopher Faylor <me@cgf.cx>2000-03-09 21:04:05 +0000
commitaf1dc7ccea4e312010198981382bd1e33910eccb (patch)
tree0a4548c063598f1674c9cd9eafa5232ab5009d6d /winsup/cygwin/syscalls.cc
parent3072163c0fc1304bfa93ba950d8747c8456fca05 (diff)
downloadcygnal-af1dc7ccea4e312010198981382bd1e33910eccb.tar.gz
cygnal-af1dc7ccea4e312010198981382bd1e33910eccb.tar.bz2
cygnal-af1dc7ccea4e312010198981382bd1e33910eccb.zip
* environ.cc: Eliminate oldstack CYGWIN option.
* exceptions.cc (sfta): Eliminate obsolete function. (sgmb): Eliminate obsolete function. (class stack_info): Remove MS method for walking the stack. (stack_info::init): Just initialize required fields. (stack_info::brute_force): Rename to stack_info::walk. (handle_exceptions): Pass derived frame pointer to sig_send. (interrupt_setup): Clear saved frame pointer here. (interrupt_on_return): thestack is no longer a pointer. (call_handler): Accept a flag to indicate when a signal was sent from other than the main thread. Use saved frame pointer for determining where to place signal handler call. (sig_handle): Accept "nonmain" argument. Pass it to call_handler. * fhandler_tty.cc (fhandler_tty_common::__acquire_output_mutex): Change debugging output slightly. * (fhandler_tty_common::__release_output_mutex): Ditto. (fhandler_tty_slave::read): Fix a comment, remove a goto. * sigproc.cc (sig_send): Accept an optional frame pointer argument for use when suspending the main process. sigcomplete_main is an autoreset event now. Save frame pointer for non-main operation. (wait_sig): Make sigcomplete_main an autoreset event. Eliminate NOSIGQUEUE. Pass rc to sig_handle to signify if this was a nonmain process. * sigproc.h: Reflect change to sig_send argument. * syscalls.cc (swab): Eliminate swab function since it is now available in newlib. * winsup.h (signal_dispatch): Change CONTEXT cx to DWORD ebp.
Diffstat (limited to 'winsup/cygwin/syscalls.cc')
-rw-r--r--winsup/cygwin/syscalls.cc15
1 files changed, 0 insertions, 15 deletions
diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc
index b958a0619..9b03f5863 100644
--- a/winsup/cygwin/syscalls.cc
+++ b/winsup/cygwin/syscalls.cc
@@ -1843,21 +1843,6 @@ ffs (int i)
extern "C"
void
-swab (const void *src, void *dst, ssize_t n)
-{
- const char *from = (const char *) src;
- char *to = (char *) dst;
-
- while (n > 1)
- {
- const char b0 = from[--n], b1 = from[--n];
- to[n] = b0;
- to[n + 1] = b1;
- }
-}
-
-extern "C"
-void
login (struct utmp *ut)
{
register int fd;