blob: 8ed941eba896f29079b6bf5ff571e37fa4f30b34 [file] [log] [blame]
iyermanoj28eaa912002-01-04 20:28:52 +00001/*
iyermanoj28eaa912002-01-04 20:28:52 +00002 * Copyright (c) International Business Machines Corp., 2001
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
12 * the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
Wanlong Gao4548c6c2012-10-19 18:03:36 +080016 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
iyermanoj28eaa912002-01-04 20:28:52 +000017 */
iyermanoj28eaa912002-01-04 20:28:52 +000018/*@(#)63 1.1 testcase/bpsc_str/sched.h, pvt_kernel, pv_kernel 12/11/96 16:43:19*/
iyermanoj28eaa912002-01-04 20:28:52 +000019/*---------------------------------------------------------------------+
20| sched.h |
21| ==================================================================== |
22| |
23| Description: Simplistic test to verify the signal system function |
24| calls: |
25| |
26| Last update: Ver. 1.2, 4/10/94 23:05:59 |
27| |
28| Change Activity |
29| |
30| Version Date Name Reason |
31| 0.1 040294 DJK Initial version for AIX 4.1 |
32| 0.2 010402 Manoj Iyer Ported to Linux |
33| |
34+---------------------------------------------------------------------*/
35
36#ifndef _H_COMMON
37#define _H_COMMON
38
robbiewda0cc972003-03-28 17:18:51 +000039#include <sys/types.h>
40#include <unistd.h>
Steven Jackson249f4052016-12-13 16:16:00 +000041#include <sys/wait.h>
robbiewda0cc972003-03-28 17:18:51 +000042#include <string.h>
43#include <stdlib.h>
44#include <signal.h>
45#include <pwd.h>
46#include <time.h>
iyermanoj28eaa912002-01-04 20:28:52 +000047#include <errno.h>
48#include <stdio.h>
49
50#define DEFAULT_PRIORITY 70
51
52#if 0
53int openlog (char *);
54void logmsg (const char *, ...);
55#endif
56void sys_error (const char *, const char *, int);
57void error (const char *, const char *, int);
58
59#endif /* _H_COMMON */