Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stack.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52a181cf24908deab54dd39faf2cc16de351177f (plain)
1
2
3
4
5
6
7
8
9
10
/* libc/sys/linux/stack.c - Basic stack system calls */

/* Copyright 2002, Red Hat Inc. */

#include <signal.h>
#include <unistd.h>
#include <sys/types.h>
#include <machine/syscall.h>

_syscall2(int,sigaltstack,const stack_t *,ss,stack_t *,oss)