linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: Mark Hatle <mhatle@mvista.com>
To: Jaap-Jan Boor <jjboor@aimsys.nl>
Cc: yang <wchyang_hn@sina.com>, linuxppc-embedded@lists.linuxppc.org
Subject: Re: Can't set the schedual parameter of threads in linux
Date: Thu, 11 Mar 2004 09:10:07 -0600	[thread overview]
Message-ID: <4050814F.1080803@mvista.com> (raw)
In-Reply-To: <71979D08-736D-11D8-AD25-000A95B15278@aimsys.nl>


I'm far from an expert on pthreads..  but these sound like things that
require "nptl".  And as far as I know, nptl isn't exactly ready for the
ppc-embedded space.. :|

--Mark

Jaap-Jan Boor wrote:
>
> Yang,
>
> You are right, I don't use the pthread_[gs]etschedparam() functions.
> I use in the new thread's context the
> pthread_attr_getschedpolicy(&tattr, &policy);
> pthread_attr_getschedparam(&tattr, &param);
>
> functions, and then set the new priority
>
> param.sched_priority = newpriority;
> pthread_setschedparam(pthread_self(), policy, &param);
>
> Jaap-Jan
>
> On Mar 11, 2004, at 14:10, yang wrote:
>
>> Hi,
>>        I did run my program as root, and the key to my problem is why
>> it works well in Solaris system but not in Red Hat system.
>>        Please copy the follow codes and run it in your system if you
>> are spare and will. Thank you very much!
>>        Best regards,
>>                                                  yang
>>
>>
>>> yang,
>>>
>>> Are you running your application as root? Also, try to get/set
>>> the pthread schedule parameters in the pthread context itself.
>>>
>>> Jaap-Jan
>>>
>>> On Mar 11, 2004, at 2:06, yang wrote:
>>>
>>>>
>>>> Hello,
>>>>     I encounter a problem when I transplant application.
>>>>     There is no effect to the pthread when I call
>>>> pthread_setschedparam() function in test program,  and it's policy
>>>> and
>>>> priority are stilll zero, not what I expected, after call
>>>> pthread_getschedparam(). The codes  is as the follow:
>>>>
>>>> #include <sched.h>
>>>> #include <pthread.h>
>>>> #include <stdio.h>
>>>> #include <stdlib.h>
>>>> #include <sys/types.h>
>>>> #include <linux/ipc.h>
>>>> #include <linux/msg.h>
>>>> #include <errno.h>
>>>> #include <stddef.h>
>>>> #include <string.h>
>>>>
>>>> void * func()
>>>> {
>>>>         while (1);
>>>>     return;
>>>> }
>>>>
>>>> int main()
>>>> {
>>>>     pthread_attr_t tattr;
>>>>     pthread_t tid;
>>>>     int policy;
>>>>     int ret;
>>>>     int newprio = 20;
>>>>     struct sched_param param;
>>>>
>>>>     ret = pthread_attr_init (&tattr);
>>>>     if (ret != 0)
>>>>     {
>>>>         printf("Error in init: %s\n", strerror(errno));
>>>>     }
>>>>
>>>>     ret = pthread_attr_getschedparam (&tattr, &param);
>>>>     if (ret != 0)
>>>>     {
>>>>         printf("Error in get after init: %s\n", strerror(errno));
>>>>     }
>>>>     ret = pthread_attr_setdetachstate(&tattr,
>>>> PTHREAD_CREATE_DETACHED);
>>>>    if (ret != 0)
>>>>     {
>>>>         printf("Error in setdea: %s\n", strerror(errno));
>>>>     }
>>>>     ret = pthread_attr_setschedpolicy(&tattr, SCHED_RR);
>>>>     if (ret != 0)
>>>>     {
>>>>         printf("Error in setpolicy: %s\n", strerror(errno));
>>>>     }
>>>>
>>>>     param.sched_priority = newprio;
>>>>     ret = pthread_attr_setschedparam (&tattr, &param);
>>>>     if (ret != 0)
>>>>     {
>>>>         printf("Error in set: %s\n", strerror(errno));
>>>>     }
>>>>
>>>>     ret = pthread_create (&tid, &tattr, (int*) func, NULL);
>>>>     if (ret != 0)
>>>>     {
>>>>         printf("Error in create: %s\n", strerror(errno));
>>>>     }
>>>>
>>>>     param.sched_priority = -1;
>>>>     ret = pthread_getschedparam (tid, &policy, &param);
>>>>     if (ret != 0)
>>>>     {
>>>>         printf("Error in get after create: %d %s\n", ret,
>>>> strerror(errno));
>>>>     }
>>>>
>>>>     printf("policy: %d\tpriority: %d\n", policy,
>>>> param.sched_priority);
>>>>
>>>>     return 0;
>>>>
>>>> }
>>>>
>>>>     The output is :
>>>>     policy: 0    priority: 0
>>>>
>>>>     Would you like to tell me how to set the policy and priority to
>>>> pthreads in Red Hat.? Thank you very much!
>>>>     Best regards,
>>>>                                      yang
>>>>
>>>>
>>>
>>>
>>>
>
>
>
>


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

  reply	other threads:[~2004-03-11 15:10 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-03-11  1:06 Can't set the schedual parameter of threads in linux yang
2004-03-11 11:56 ` Jaap-Jan Boor
     [not found]   ` <001601c4076a$465d6470$5e1312ac@yang>
2004-03-11 15:04     ` Jaap-Jan Boor
2004-03-11 15:10       ` Mark Hatle [this message]
  -- strict thread matches above, loose matches on Subject: below --
2004-03-11 15:22 Jean-Denis Boyer
2004-03-11 15:37 ` Jaap-Jan Boor
2004-03-11 19:39 erik.teose

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=4050814F.1080803@mvista.com \
    --to=mhatle@mvista.com \
    --cc=jjboor@aimsys.nl \
    --cc=linuxppc-embedded@lists.linuxppc.org \
    --cc=wchyang_hn@sina.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).