Commit ade39b5b authored by Walter Harms's avatar Walter Harms Committed by David Mosberger

[PATCH] ia64: improve kernel_thread() cleanliness

This is a fix to kernel_thread(). I dont claim to fix any real problem
its just a fix to return pid_t. This is part of a series of fixes for
the linux kernel 2.4.20 to make proper use of pid_t.
parent ad4f1f0d
......@@ -579,7 +579,8 @@ pid_t
kernel_thread (int (*fn)(void *), void *arg, unsigned long flags)
{
struct task_struct *parent = current;
int result, tid;
int result;
pid_t tid;
tid = clone(flags | CLONE_VM | CLONE_UNTRACED, 0);
if (parent != current) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment