From: Michael Buesch <fsdeveloper@yahoo.de>
To: Con Kolivas <kernel@kolivas.org>
Cc: linux kernel mailing list <linux-kernel@vger.kernel.org>,
smiler@lanil.mine.nu, phillips@arcor.de
Subject: Re: [RFC][PATCH] SCHED_ISO for interactivity
Date: Sat, 12 Jul 2003 18:27:09 +0200 [thread overview]
Message-ID: <200307121826.24645.fsdeveloper@yahoo.de> (raw)
In-Reply-To: <200307130139.45477.kernel@kolivas.org>
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On Saturday 12 July 2003 17:39, Con Kolivas wrote:
[SNIP]
> @@ -2153,6 +2208,9 @@ asmlinkage long sys_sched_get_priority_m
> case SCHED_NORMAL:
> ret = 0;
> break;
> + case SCHED_ISO:
> + ret = 0;
> + break;
> }
> return ret;
> }
> @@ -2175,6 +2233,8 @@ asmlinkage long sys_sched_get_priority_m
> break;
> case SCHED_NORMAL:
> ret = 0;
> + case SCHED_ISO:
> + ret = 0;
> }
> return ret;
> }
As far, as I can see, this would do the very same
things, with reduced codesize:
case SCHED_NORMAL:
+ case SCHED_ISO:
ret = 0;
break;
}
return ret;
}
and this:
break;
case SCHED_NORMAL:
+ case SCHED_ISO:
ret = 0;
}
return ret;
}
- --
Regards Michael Buesch
http://www.8ung.at/tuxsoft
18:22:51 up 49 min, 2 users, load average: 2.14, 2.32, 2.31
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)
iD8DBQE/EDbdoxoigfggmSgRAgFpAJ9Iz71qcgIFEM8mYIY9Xrw9Yn5BfQCeLZf3
5h47aU7gAzFYYrdLVS0RVZ8=
=drFI
-----END PGP SIGNATURE-----
next prev parent reply other threads:[~2003-07-12 16:15 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-07-11 10:53 [RFC][PATCH] SCHED_ISO for interactivity Con Kolivas
[not found] ` <1068.::ffff:217.208.49.177.1057927722.squirrel@lanil.mine.nu>
2003-07-11 14:30 ` Con Kolivas
2003-07-11 23:37 ` Christian Axelsson
2003-07-12 0:13 ` Con Kolivas
2003-07-12 15:39 ` Con Kolivas
2003-07-12 16:27 ` Michael Buesch [this message]
2003-07-12 16:28 ` Christian Axelsson
2003-07-13 2:26 ` Con Kolivas
2003-07-13 3:40 ` Christian Axelsson
2003-07-13 20:07 ` Daniel Phillips
2003-07-12 15:49 ` William Lee Irwin III
2003-07-12 15:53 ` Con Kolivas
2003-07-13 20:03 ` Daniel Phillips
2003-07-14 0:13 ` Con Kolivas
2003-07-14 2:40 ` Daniel Phillips
-- strict thread matches above, loose matches on Subject: below --
2003-07-13 10:41 Guillaume Chazarain
2003-07-13 11:54 ` Christian Axelsson
2003-07-13 14:06 ` Con Kolivas
[not found] <JEPOQNA0LFV95MFCPMSKONGFSNX.3f113751@monpc>
2003-07-13 12:53 ` Con Kolivas
2003-07-13 14:54 Guillaume Chazarain
2003-07-14 0:07 ` Con Kolivas
2003-07-14 4:05 ` Con Kolivas
2003-07-14 15:40 Guillaume Chazarain
2003-07-14 21:45 ` Con Kolivas
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=200307121826.24645.fsdeveloper@yahoo.de \
--to=fsdeveloper@yahoo.de \
--cc=kernel@kolivas.org \
--cc=linux-kernel@vger.kernel.org \
--cc=phillips@arcor.de \
--cc=smiler@lanil.mine.nu \
/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.