From: Ulrich Drepper <drepper@redhat.com>
To: Linus Torvalds <torvalds@transmeta.com>,
Linux Kernel <linux-kernel@vger.kernel.org>
Subject: more generic syscall return bylue type fixes
Date: Sun, 23 Mar 2003 01:46:11 -0800 [thread overview]
Message-ID: <3E7D8263.20104@redhat.com> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 404 bytes --]
It was good to see the syscall return value types being fixed but still
some cases are missing. I attach a patch which fixes at least those
which cause problems to me in the moment.
--
--------------. ,-. 444 Castro Street
Ulrich Drepper \ ,-----------------' \ Mountain View, CA 94041 USA
Red Hat `--' drepper at redhat.com `---------------------------
[-- Attachment #1.2: d-syscall-ret --]
[-- Type: text/plain, Size: 1685 bytes --]
--- linux-2.5.65/kernel/posix-timers.c-old 2003-03-21 23:09:34.000000000 -0800
+++ linux-2.5.65/kernel/posix-timers.c 2003-03-23 01:41:55.000000000 -0800
@@ -422,7 +422,7 @@
/* Create a POSIX.1b interval timer. */
-asmlinkage int
+asmlinkage long
sys_timer_create(clockid_t which_clock,
struct sigevent *timer_event_spec, timer_t * created_timer_id)
{
@@ -662,7 +662,7 @@
}
}
/* Get the time remaining on a POSIX.1b interval timer. */
-asmlinkage int
+asmlinkage long
sys_timer_gettime(timer_t timer_id, struct itimerspec *setting)
{
struct k_itimer *timr;
@@ -694,7 +694,7 @@
*/
-asmlinkage int
+asmlinkage long
sys_timer_getoverrun(timer_t timer_id)
{
struct k_itimer *timr;
@@ -847,7 +847,7 @@
}
/* Set a POSIX.1b interval timer */
-asmlinkage int
+asmlinkage long
sys_timer_settime(timer_t timer_id, int flags,
const struct itimerspec *new_setting,
struct itimerspec *old_setting)
@@ -921,7 +921,7 @@
}
/* Delete a POSIX.1b interval timer. */
-asmlinkage int
+asmlinkage long
sys_timer_delete(timer_t timer_id)
{
struct k_itimer *timer;
@@ -1056,7 +1056,7 @@
return -EINVAL;
}
-asmlinkage int
+asmlinkage long
sys_clock_settime(clockid_t which_clock, const struct timespec *tp)
{
struct timespec new_tp;
@@ -1071,7 +1071,7 @@
new_tp.tv_nsec /= NSEC_PER_USEC;
return do_sys_settimeofday((struct timeval *) &new_tp, NULL);
}
-asmlinkage int
+asmlinkage long
sys_clock_gettime(clockid_t which_clock, struct timespec *tp)
{
struct timespec rtn_tp;
@@ -1090,7 +1090,7 @@
return error;
}
-asmlinkage int
+asmlinkage long
sys_clock_getres(clockid_t which_clock, struct timespec *tp)
{
struct timespec rtn_tp;
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
reply other threads:[~2003-03-23 9:35 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3E7D8263.20104@redhat.com \
--to=drepper@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@transmeta.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.