source: rtems/cpukit/posix/src/vfork.c @ d2ccb32

4.104.115
Last change on this file since d2ccb32 was d2ccb32, checked in by Joel Sherrill <joel.sherrill@…>, on 11/20/08 at 16:56:53

2008-11-20 Joel Sherrill <joel.sherrill@…>

  • posix/Makefile.am: Add dummy vfork() implementation.
  • posix/src/vfork.c: New file.
  • Property mode set to 100644
File size: 390 bytes
RevLine 
[d2ccb32]1/*
2 *  COPYRIGHT (c) 1989-2008.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12#if HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#include <sys/types.h>
17#include <unistd.h>
18
19pid_t vfork(void)
20{
21  return -1;
22}
23
Note: See TracBrowser for help on using the repository browser.