Code Monkey home page Code Monkey logo

glibc's People

Contributors

ajaeger avatar allanmcrae avatar amodra avatar andreas-schwab avatar aurel32 avatar cmetcalf-tilera avatar codonell avatar davem330 avatar drepper avatar eggert avatar employedrussian avatar frobtech avatar fweimer-rh avatar hjl-tools avatar jakubjelinek avatar jsm28 avatar leonardcj avatar mpolacek avatar neleai avatar pinotree avatar ricaljasan avatar rth7680 avatar siddhesh avatar snogglethorpe avatar sthibaul avatar triegelrh avatar tschwinge avatar vapier avatar zackw avatar zatrazz avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

glibc's Issues

__pthread_tpp_change_priority: Assertion error

I have been seeing this error which I can't seem to decipher which potentially seems to be related to pthread mutex.

What I am doing is creating a FIFO for each thread and once it's created, I unblock the respective thread. I'm using a threadWakeupIdx flag to do so.

Everything seems to work as expected when I have 3 indexes defined in WakeUpThreadIdx ENUM BUT when I have 4 (i.e NUM_ACTIVE_THREADS = 4), I get the following error which I'm unable to decode...

tpp.c:84: __pthread_tpp_change_priority: Assertion `new_prio == -1 || (new_prio >= fifo_min_prio && new_prio <= fifo_max_prio)' failed.
Aborted (core dumped)
// threads.c
void *t1(void *args)
{

    // block till the fifo for T1 thread is created
    pthread_mutex_lock(&lock);
    while(threadWakeupIdx >= (T1_IDX + 1))
    {
        pthread_cond_wait(&cond, &lock);
    }
    pthread_mutex_unlock(&lock);
    
    // ...
}

void *t2(void *args)
{

    // block till the fifo for T2 thread is created
    pthread_mutex_lock(&lock);
    while(threadWakeupIdx >= (T2_IDX + 1))
    {
        pthread_cond_wait(&cond, &lock);
    }
    pthread_mutex_unlock(&lock); 
    
    // ...
}

void *t3(void *args)
{

    // block till the fifo for T3 thread is created
    pthread_mutex_lock(&lock);
    while(threadWakeupIdx >= (T3_IDX + 1))
    {
        pthread_cond_wait(&cond, &lock);
    }
    pthread_mutex_unlock(&lock);
    
    // ...
}

void *t4(void *args)
{

    // block till the fifo for T4 thread is created
    pthread_mutex_lock(&lock);
    while(threadWakeupIdx >= (T4_IDX + 1))
    {
        pthread_cond_wait(&cond, &lock);
    }
    pthread_mutex_unlock(&lock);
    
    // ...
}

// main.h
typedef enum
{
    T1_INDEX = 0,
    T2_INDEX,
    T3_INDEX,
    T4_INDEX,
    NUM_ACTIVE_THREADS
} WakeUpThreadIdx;

typedef struct
{
    char fifoPath[100];        
    int fd;
} FifoInfo;

#define FIFO_REF_PATH     "/tmp"

// main.c
int threadWakeupIdx = 0;
pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
pthread_cond_t cond = PTHREAD_COND_INITIALIZER;

static const char *threadNameList[NUM_ACTIVE_THREADS] = {T1_FIFO_NAME, T2_FIFO_NAME, T3_FIFO_NAME, T4_FIFO_NAME};

static pthread_t t1Handler;
static pthread_t t2Handler;
static pthread_t t3Handler;
static pthread_t t4Handler;

// init fifo for each thread
void InitFifo(FifoInfo *fifoList)
{
    char fifoPath[100] = {0};
    for (int idx = T1_INDEX; idx < NUM_ACTIVE_THREADS; idx++)
    {
        strcpy(fifoPath, FIFO_REF_PATH);
        strcat(fifoPath, threadNameList[idx]);
        strcpy(fifoList[idx].fifoPath, fifoPath);
        
        // create fifo ...

        // wake up a respective thread once the fifo is init'd
       pthread_mutex_lock(&lock);
       threadWakeupIdx++;
       pthread_cond_broadcast(&cond);
       pthread_mutex_unlock(&lock);

       memset(fifoPath, 0, sizeof(fifoPath));
    }
    
}

int main() 
{
    FifoInfo fifoList[NUM_ACTIVE_THREADS] = {0};
    InitFifo(fifoList);

    pthread_create(&t1Handler, NULL, t1, <argument>);
    pthread_create(&t2Handler, NULL, t2, <argument>);
    pthread_create(&t3Handler, NULL, t3, <argument>);
    pthread_create(&t4Handler, NULL, t4, <argument>);
    
    // .....
    
    pthread_join(t1Handler, 0);
    pthread_join(t2Handler, 0);
    pthread_join(t3Handler, 0);
    pthread_join(t4Handler, 0);
    
    return 0;
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.