source: rtems/c/src/lib/libc/hosterr.c @ 0cb7cb9

4.104.114.84.95
Last change on this file since 0cb7cb9 was 07a3253d, checked in by Joel Sherrill <joel.sherrill@…>, on 11/23/98 at 19:07:58

Added base version of file system infrastructure. This includes a major
overhaul of the RTEMS system call interface. This base file system is
the "In-Memory File System" aka IMFS.

The design and implementation was done by the following people:

+ Joel Sherrill (joel@…)
+ Jennifer Averett (jennifer@…)
+ Steve "Mr Mount" Salitasc (salitasc@…)
+ Kerwin Wade (wade@…)

PROBLEMS
========

+ It is VERY likely that merging this will break the UNIX port. This

can/will be fixed.

+ There is likely some reentrancy/mutual exclusion needed.

+ Eventually, there should be a "mini-IMFS" description table to

eliminate links, symlinks, etc to save memory. All you need to
have "classic RTEMS" functionality is technically directories
and device IO. All the rest could be left out to save memory.

  • Property mode set to 100644
File size: 956 bytes
Line 
1/*
2 *  Routines to access a host errno
3 *
4 *  COPYRIGHT (c) 1989-1998.
5 *  On-Line Applications Research Corporation (OAR).
6 *  Copyright assigned to U.S. Government, 1994.
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.OARcorp.com/rtems/license.html.
11 *
12 *  $Id$
13 */
14
15#include <rtems.h>
16#if defined(RTEMS_UNIX)
17#include <errno.h>
18
19int host_errno( void );
20
21/*
22 *  fix_syscall_errno
23 *
24 *  copy host errno, if any to thread aware errno, if any
25 */
26
27void fix_syscall_errno( void )
28{
29  errno = host_errno();
30}
31
32/*
33 *  host_errno
34 *
35 *  Get the host system errno, if any
36 *  When using newlib (or possibly other libc's) on top of UNIX
37 *  the errno returned by system calls may be unavailable due
38 *  to trickery of making errno thread aware.
39 *  This provides a kludge of getting at it.
40 */
41
42#undef errno
43extern int errno;
44int host_errno(void)
45{
46  return errno;
47}
48#endif
Note: See TracBrowser for help on using the repository browser.