From dc7fb59bb762bec93991633c02b6f67bad70fa8a Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 14 May 2002 18:45:34 +0000 Subject: 2002-05-03 Ralf Corsepius * include/sys/utsname.h: Remove. * include/Makefile.am: Reflect changes above. * src/utsname.c: Remove. * src/Makefile.am: Reflect changes above. --- c/src/exec/posix/src/Makefile.am | 2 +- c/src/exec/posix/src/utsname.c | 53 ---------------------------------------- 2 files changed, 1 insertion(+), 54 deletions(-) delete mode 100644 c/src/exec/posix/src/utsname.c (limited to 'c/src/exec/posix/src') diff --git a/c/src/exec/posix/src/Makefile.am b/c/src/exec/posix/src/Makefile.am index 00abd9fc01..c5437ee1b4 100644 --- a/c/src/exec/posix/src/Makefile.am +++ b/c/src/exec/posix/src/Makefile.am @@ -81,7 +81,7 @@ C_FILES = adasupp.c $(CANCEL_C_FILES) $(CONDITION_VARIABLE_C_FILES) \ $(ID_C_FILES) $(KEY_C_FILES) $(MEMORY_C_FILES) $(MESSAGE_QUEUE_C_FILES) \ $(MUTEX_C_FILES) $(PTHREAD_C_FILES) $(PSIGNAL_C_FILES) sched.c \ $(SEMAPHORE_C_FILES) sysconf.c $(TIME_C_FILES) $(TIMER_C_FILES) types.c \ - $(ENOSYS_C_FILES) $(BUILD_FOR_NOW_C_FILES) utsname.c + $(ENOSYS_C_FILES) $(BUILD_FOR_NOW_C_FILES) C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o) OBJS = $(C_O_FILES) diff --git a/c/src/exec/posix/src/utsname.c b/c/src/exec/posix/src/utsname.c deleted file mode 100644 index fe3fecac9f..0000000000 --- a/c/src/exec/posix/src/utsname.c +++ /dev/null @@ -1,53 +0,0 @@ -/* - * $Id$ - */ - -#if HAVE_CONFIG_H -#include "config.h" -#endif - -#include -#include - -#include -#include - - -#include -#include -#include - -#include - -/*PAGE - * - * 4.4.1 Get System Name, P1003.1b-1993, p. 90 - */ - -int uname( - struct utsname *name -) -{ - /* XXX: Here is what Solaris returns... - sysname = SunOS - nodename = node_name - release = 5.3 - version = Generic_101318-12 - machine = sun4m - */ - - if ( !name ) - rtems_set_errno_and_return_minus_one( EFAULT ); - - strcpy( name->sysname, "RTEMS" ); - - sprintf( name->nodename, "Node %d", _Objects_Local_node ); - - strcpy( name->release, RTEMS_VERSION ); - - strcpy( name->version, "" ); - - sprintf( name->machine, "%s/%s", CPU_NAME, CPU_MODEL_NAME ); - - return 0; -} -- cgit v1.2.3