source: rtems/cpukit/posix/src/kill.c @ 92f4671

4.104.115
Last change on this file since 92f4671 was 0b78bc4d, checked in by Jennifer Averett <Jennifer.Averett@…>, on 12/20/07 at 19:32:03

2007-12-20 Jennifer Averett <jennifer.averett@…>

  • posix/Makefile.am, posix/src/kill.c, posix/src/killinfo.c: Split file and resolved copyright information.
  • posix/src/kill_r.c: New file.
  • Property mode set to 100644
File size: 585 bytes
Line 
1/*
2 *  3.3.2 Send a Signal to a Process, P1003.1b-1993, p. 68
3 *
4 *  COPYRIGHT (c) 1989-2007.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#include <pthread.h>
19#include <errno.h>
20
21#include <rtems/system.h>
22#include <rtems/posix/pthread.h>
23#include <rtems/posix/psignal.h>
24
25int kill(
26  pid_t pid,
27  int   sig
28)
29{
30  return killinfo( pid, sig, NULL );
31}
32
Note: See TracBrowser for help on using the repository browser.