summaryrefslogtreecommitdiff
path: root/PACE/pace/posix/time.inl
diff options
context:
space:
mode:
authorjwh1 <jwh1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-12 06:28:58 +0000
committerjwh1 <jwh1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-12 06:28:58 +0000
commit6d1e2a9c7fd8c293768712d87821e7c77560daf9 (patch)
treeaa9a933a3a4a4a35354793166154420c4e88b5f0 /PACE/pace/posix/time.inl
parentb53b6c69b9c8a4fe4cdd47b704ce984fd8df16fa (diff)
downloadATCD-6d1e2a9c7fd8c293768712d87821e7c77560daf9.tar.gz
Wed Jul 12 01:25:44 2000 John Heitmann <jwh1@cs.wustl.edu>
Diffstat (limited to 'PACE/pace/posix/time.inl')
-rw-r--r--PACE/pace/posix/time.inl14
1 files changed, 11 insertions, 3 deletions
diff --git a/PACE/pace/posix/time.inl b/PACE/pace/posix/time.inl
index 70daf78062d..8ade3089d4f 100644
--- a/PACE/pace/posix/time.inl
+++ b/PACE/pace/posix/time.inl
@@ -198,7 +198,11 @@ pace_timer_create (pace_clockid_t clock_id,
pace_timer_t *timerid)
{
#if PACE_LINUX
- return pace_emu_timer_create (clock_id, evp, timerid);
+ errno = ENOSYS;
+ PACE_UNUSED_ARG (clock_id);
+ PACE_UNUSED_ARG (evp);
+ PACE_UNUSED_ARG (timerid);
+ return -1;
#else
return timer_create (clock_id, evp, timerid);
#endif /* PACE_LINUX */
@@ -209,7 +213,9 @@ int
pace_timer_delete (pace_timer_t timerid)
{
#if PACE_LINUX
- return pace_emu_timer_delete (timerid);
+ errno = ENOSYS;
+ PACE_UNUSED_ARG (timerid);
+ return -1;
#else
return timer_delete (timerid);
#endif /* PACE_LINUX */
@@ -220,7 +226,9 @@ int
pace_timer_getoverrun (pace_timer_t timerid)
{
#if PACE_LINUX
- return pace_emu_timer_getoverrun (timerid);
+ errno = ENOSYS;
+ PACE_UNUSED_ARG (timerid);
+ return -1;
#else
return timer_getoverrun (timerid);
#endif /* PACE_LINUX */