From 1e16c52a3c55c85344513e07486945c8775a7280 Mon Sep 17 00:00:00 2001 From: marcus Date: Mon, 31 Jan 2005 01:59:49 +0000 Subject: 2005-01-31 Marcus Brinkmann * hurd-l4/sysdeps/l4/getclktck.c: New file. --- libc/ChangeLog | 2 ++ libc/hurd-l4/sysdeps/l4/getclktck.c | 28 ++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 libc/hurd-l4/sysdeps/l4/getclktck.c (limited to 'libc') diff --git a/libc/ChangeLog b/libc/ChangeLog index 2bb6003..f0facdd 100644 --- a/libc/ChangeLog +++ b/libc/ChangeLog @@ -1,5 +1,7 @@ 2005-01-31 Marcus Brinkmann + * hurd-l4/sysdeps/l4/getclktck.c: New file. + * hurd-l4/sysdeps/l4/hurd/isatty.c: New file. * hurd-l4/sysdeps/l4/hurd/fxstat64.c (__fxstat64): Fake a character device for fds 0 to 2. diff --git a/libc/hurd-l4/sysdeps/l4/getclktck.c b/libc/hurd-l4/sysdeps/l4/getclktck.c new file mode 100644 index 0000000..cccd945 --- /dev/null +++ b/libc/hurd-l4/sysdeps/l4/getclktck.c @@ -0,0 +1,28 @@ +/* Return run-time value of CLK_TCK for L4. + Copyright (C) 1999, 2000, 2001, 2005 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, write to the Free + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA. */ + +#include + +/* Return frequency of `times'. On L4, the clock measures time in + microseconds, irregardless of processor frequency. */ +int +__getclktck (void) +{ + return 1000 * 10000; +} -- cgit v1.2.3