Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9126719
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T07:06:23+00:00 2026-06-17T07:06:23+00:00

I have a single threaded application. If i use below code, i get sched_setscheduler():

  • 0

I have a single threaded application. If i use below code, i get sched_setscheduler(): Operation not permitted
.

struct sched_param param;
param.sched_priority = 1;
if (sched_setscheduler(getpid(), SCHED_RR, &param))
printf(stderr, "sched_setscheduler(): %s\n", strerror(errno));

But, if i use pthread api such as below, i dont get an error. What is the difference between the two for a single threaded application and is the below function really changing the scheduler and priority or am i missing some error handling?

void assignRRPriority(int tPriority)
{
    int  policy;
    struct sched_param param;

    pthread_getschedparam(pthread_self(), &policy, &param);
    param.sched_priority = tPriority;
    if(pthread_setschedparam(pthread_self(), SCHED_RR, &param))
            printf("error while setting thread priority to %d", tPriority);
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T07:06:24+00:00Added an answer on June 17, 2026 at 7:06 am

    The error may be caused by a limit set on realtime priority (ulimit -r to check, ulimit -r 99 to allow 1-99 priorities). As of pthread_setschedparam being successful: if you compiled without -pthread option, this function is just a stub, like some other pthread functions. With -pthread option, the results should be identical (strace shows that the same system call is used).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a single-threaded application that uses 3 SQLite databases in 3 different files
I have a shutdown hook handler defined in a SINGLE threaded C application. int
we have a single threaded application that simulates the interaction of a hundred of
I have an old C++ library which has been designed for use in single-threaded
we have a multi-threaded desktop application in C++ (MFC). Currently developers use either CString
I currently have a GUI single-threaded application in C++ and Qt. It takes a
I'm trying to get a simple multi-threaded OpenGL application working. I have an update
We have a spring application (single-threaded by design). We want to adapt it to
Assuming I am using a single threaded application, can java.util.LinkedList have a loop? I
I have a supposedly single-threaded FLTK application with a popup menu, created with Fluid.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.