All of lore.kernel.org
 help / color / mirror / Atom feed
From: Chris Friesen <cfriesen@nortelnetworks.com>
To: linux-kernel@vger.kernel.org
Subject: possible problems with kernel threading code?
Date: Fri, 20 Feb 2004 13:08:01 -0500	[thread overview]
Message-ID: <40364D01.9030504@nortelnetworks.com> (raw)


I'm running the following code under 2.4.18-2.4.20, with the standard 
thread library, and sometimes I get an error of "No such process".  How 
can this possibly happen?  The pthread_setschedparam() call is running 
in the thread that it is trying to operate on, but somehow it can't find 
itself?

I also have managed to trigger reboots with this code, and I'm not sure how.

Anyone have any ideas?  Is this a kernel problem?  I can trigger it on 
ppc hardware under kernel versions 2.4.18-2.4.20 and a modified 2.4.22. 
(I haven't tried 2.4.21)  My x86 with a 2.4.18-19.8.0 redhat kernel 
doesn't show the problem.

Thanks,

Chris



#include <stdio.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <pthread.h>
#include <stdlib.h>
#include <string.h>

pthread_t t1;

void *func(void *p)
{
   pid_t pid;
   int status;

   struct sched_param schedParam;
   int         policy = SCHED_RR;
   int         priority = 40;

  schedParam.sched_priority = priority;
  int schedRc = pthread_setschedparam(t1, policy, &schedParam);
  if (schedRc){
       fprintf(stderr, "pthread_setschedparam error:%s, priority:%d,
               policy:%d\n",strerror(schedRc), priority, policy);
   }
   pthread_exit(EXIT_SUCCESS);
   return 0;
}


int main(int argc, char **argv)
{
   pthread_create(&t1, 0, func,(void*)1);
   pthread_join(t1,0);
   return 0;
}


-- 
Chris Friesen                    | MailStop: 043/33/F10
Nortel Networks                  | work: (613) 765-0557
3500 Carling Avenue              | fax:  (613) 765-2986
Nepean, ON K2H 8E9 Canada        | email: cfriesen@nortelnetworks.com

             reply	other threads:[~2004-02-20 18:08 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-02-20 18:08 Chris Friesen [this message]
2004-02-20 19:43 ` possible problems with kernel threading code? Ulrich Drepper
2004-02-20 20:58   ` Chris Friesen

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=40364D01.9030504@nortelnetworks.com \
    --to=cfriesen@nortelnetworks.com \
    --cc=linux-kernel@vger.kernel.org \
    /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.