summaryrefslogtreecommitdiff
path: root/PACE/pace/vxworks/utsname.inl
diff options
context:
space:
mode:
Diffstat (limited to 'PACE/pace/vxworks/utsname.inl')
-rw-r--r--PACE/pace/vxworks/utsname.inl33
1 files changed, 0 insertions, 33 deletions
diff --git a/PACE/pace/vxworks/utsname.inl b/PACE/pace/vxworks/utsname.inl
deleted file mode 100644
index fb0052108d2..00000000000
--- a/PACE/pace/vxworks/utsname.inl
+++ /dev/null
@@ -1,33 +0,0 @@
-/* $Id$ -*- C -*-
-
- * =============================================================================
- *
- * = LIBRARY
- * pace
- *
- * = FILENAME
- * pace/vxworks/utsname.inl
- *
- * = AUTHOR
- * Joe Hoffert
- *
- * ============================================================================= */
-
-#include "pace/string.h"
-#include <hostLib.h>
-#include <sysLib.h>
-
-#if (PACE_HAS_POSIX_SP_UOF)
-PACE_INLINE
-int
-pace_uname (pace_utsname * name)
-{
- size_t maxnamelen = sizeof name->nodename;
- pace_strcpy (name->sysname, "VxWorks");
- pace_strcpy (name->release, "???");
- pace_strcpy (name->version, sysBspRev ());
- pace_strcpy (name->machine, sysModel ());
-
- return gethostname (name->nodename, maxnamelen);
-}
-#endif /* PACE_HAS_POSIX_SP_UOF */