Ignore:
Timestamp:
Aug 10, 2022, 8:33:42 PM (2 years ago)
Author:
z277zhu <z277zhu@…>
Branches:
ADT, ast-experimental, master, pthread-emulation
Children:
7f6a7c9
Parents:
20be782
Message:

fix pthread_sig* interpose problems; add test doc

Signed-off-by: z277zhu <z277zhu@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/pthread.cfa

    r20be782 r428adbc  
    666666
    667667
    668     // int pthread_sigmask( int /* how */, const sigset_t * /* set */, sigset_t * /* oset */ ) libcfa_public __THROW {
    669         //     return 0;
    670     // } // pthread_sigmask
     668    int pthread_sigmask( int /* how */, const sigset_t * /* set */, sigset_t * /* oset */ ) libcfa_public __THROW {
     669             return 0;
     670    } // pthread_sigmask
    671671
    672672    int pthread_kill( pthread_t _thread __attribute__(( unused )), int sig ) libcfa_public __THROW {
     
    679679    } // pthread_kill
    680680
    681     // int pthread_sigqueue(pthread_t , int sig, const union sigval) libcfa_public __THROW {
    682     //     return 0;
    683     // } // pthread_sigqueue
     681    int pthread_sigqueue(pthread_t , int sig, const union sigval) libcfa_public __THROW {
     682        return 0;
     683    } // pthread_sigqueue
    684684
    685685    //######################### Scheduling #########################
Note: See TracChangeset for help on using the changeset viewer.