public inbox for pthreads-win32@sourceware.org
 help / color / mirror / Atom feed
From: "Burkhardt, Glenn" <Glenn.Burkhardt@goodrich.com>
To: "Lubashev, Igor" <ilubashe@akamai.com>, <pthreads-win32@sourceware.org>
Subject: RE: how to get thread priorities to work
Date: Mon, 02 May 2011 22:00:00 -0000	[thread overview]
Message-ID: <F69D5B35CAB1F043B9EE359EDA4318DC08B078A5@nhc0ex17.goodrich.root.local> (raw)
In-Reply-To: <83CE6FF8F6C9B2468A618FC2C512672605B4B8862E@USMBX1.msg.corp.akamai.com>

Dual core processor. 

-----Original Message-----
From: Lubashev, Igor [mailto:ilubashe@akamai.com] 
Sent: Monday, May 02, 2011 5:51 PM
To: Burkhardt, Glenn; pthreads-win32@sourceware.org
Subject: RE: how to get thread priorities to work

Without looking too much into this, are you trying this on a multi-core
machine (either multiple cores or one hyperthreading core)?  

- Igor



-----Original Message-----
From: pthreads-win32-owner@sourceware.org
[mailto:pthreads-win32-owner@sourceware.org] On Behalf Of Burkhardt,
Glenn
Sent: Monday, May 02, 2011 5:43 PM
To: pthreads-win32@sourceware.org
Subject: how to get thread priorities to work

I've been puzzling over this for way too long now.  I can't seem to get
thread priorities to work.  Any help will be appreciated.  

For the code that follows, I would expect that only one of the threads
would run, and the counter for the lower priority thread would never
increment.  But that's not the case, on both a WinXP and Win7 system
(built with MinGW 10/30/2010, gcc 4.5.2).  The counter values for the
two threads are close to being the same (e.g., 94686137, 99999999).

TIA...

#include <math.h>
#include <windows.h>
#include <stdio.h>
#include <pthread.h>
#include <errno.h>

void sleep10(int *cnt) {
    double x;
    for (int i=0; i < 100000000; i++) {
        x = sin(1.0/(1.0+i));
        *cnt = i;
    }
}

void printError() {
    char *msg;
    int errorCode = GetLastError();
    FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER
                  | FORMAT_MESSAGE_FROM_SYSTEM
                  | FORMAT_MESSAGE_IGNORE_INSERTS,
                  0, errorCode, 0, (LPTSTR)&msg, 0, 0);
    printf("error=%d: %s\n", errorCode, msg);
    LocalFree(msg);
}

void *thread(void *count) {
 
    printf("%p: %d\n", count, GetThreadPriority(GetCurrentThread()));

    sleep10(count);
 
    printf("%p exit\n", count);
    return 0;
}

int main() {
    struct sched_param spMax, spMin;
    pthread_attr_t attrMax, attrMin;
    pthread_t tMax, tMin;
    int minCount, maxCount;

    spMax.sched_priority = sched_get_priority_max(SCHED_OTHER);
    spMin.sched_priority = sched_get_priority_min(SCHED_OTHER);

    pthread_attr_init(&attrMax);
    pthread_attr_setschedparam(&attrMax, &spMax);
    pthread_attr_init(&attrMin);
    pthread_attr_setschedparam(&attrMin, &spMin);

    pthread_create(&tMax, &attrMax, thread, &maxCount);
    pthread_create(&tMin, &attrMin, thread, &minCount);

    printf("join %d\n", GetThreadPriority(GetCurrentThread()));
    pthread_join(tMax, 0);

    printf("%p: %d, %p: %d\n", &minCount, minCount, &maxCount,
maxCount);

    return 0;
}

  reply	other threads:[~2011-05-02 22:00 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-02 21:42 Burkhardt, Glenn
2011-05-02 21:51 ` Lubashev, Igor
2011-05-02 22:00   ` Burkhardt, Glenn [this message]
2011-05-02 22:02     ` Lubashev, Igor
2011-05-02 22:05       ` Burkhardt, Glenn

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=F69D5B35CAB1F043B9EE359EDA4318DC08B078A5@nhc0ex17.goodrich.root.local \
    --to=glenn.burkhardt@goodrich.com \
    --cc=ilubashe@akamai.com \
    --cc=pthreads-win32@sourceware.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 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 read-only IMAP folder(s) and NNTP newsgroup(s).