source: rtems/cpukit/posix/src/types.c @ 188c82b

4.104.114.84.95
Last change on this file since 188c82b was 188c82b, checked in by Joel Sherrill <joel.sherrill@…>, on 08/30/00 at 17:12:55

2000-08-30 Joel Sherrill <joel@…>

  • Many files: Moved posix/include/rtems/posix/seterr.h to score/include/rtems/seterr.h so it would be available within all APIs.
  • Property mode set to 100644
File size: 513 bytes
Line 
1/*
2 *  This file is the shell of what it initially was and is now misnamed.
3 *
4 *  $Id$
5 */
6
7#include <limits.h>
8#include <errno.h>
9#include <string.h>
10#include <sys/types.h>
11
12#include <rtems/system.h>
13#include <rtems/score/object.h>
14#include <rtems/seterr.h>
15
16/*
17 * TEMPORARY
18 */
19
20#include <assert.h>
21
22int POSIX_MP_NOT_IMPLEMENTED()
23{
24  assert( 0 );
25  return 0;
26}
27
28int POSIX_BOTTOM_REACHED()
29{
30  assert( 0 );
31  return 0;
32}
33
34int POSIX_NOT_IMPLEMENTED()
35{
36  assert( 0 );
37  return 0;
38}
39
40/*
41 * END OF TEMPORARY
42 */
43
Note: See TracBrowser for help on using the repository browser.