Sponsored Content
Top Forums Programming pthread_mutex_trylock() overwrites global variable on CentOS5 Post 302308242 by fpmurphy on Friday 17th of April 2009 12:19:47 PM
Old 04-17-2009
First some comments on your code. pthread_mutexattr_t is an opaque type. I really do not think it is a good idea to ever use memset() on an opaque type. It can lead to all sorts on interesting problems.

It looks like you are attempting to port MS Windows code to GNU/Linux. Unfortunately there is no direct equivalant for WaitForSingleObject in GNU/Linux. Sometimes you should use pthread_mutex_lock and other times you will need to use pthread_mutex_trylock. And sometimes you will need to use pthread condition variables. It all depends on the particular applicationi you are porting. Incidently WaitForMultipleObjects is an even bigger nightmare to code around when porting applications to GNU/Linux..

Below is some sample code to try. It contains rough implementations of CreateMutex and ReleaseMutex as well at their Nt*Mutant equivalants. If this sample code works, feel free to use the relevant parts. I suspect your use of memset on opaque types is part of the problem you are having. I have not supplied porting.h but it looks like you have an equivalent header. Basicly it maps MS Windows types to their equivalant GNU/Linux types i.e. PLONG to int32_t *, etc.

Code:
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>

#include "porting.h"


/* ---------- mutexes ----------- */
pthread_mutex_t  mutex1 = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t  mutex2;
pthread_mutex_t  mutex3;
pthread_mutex_t  mutex4;
pthread_mutex_t  mutex5;


NTSTATUS
NtCreateMutant( IN pthread_mutex_t  *mutex,
                IN ACCESS_MASK  DesiredAccess,
                IN POBJECT_ATTRIBUTES ObjectAttributes OPTIONAL,
                IN BOOLEAN  InitialOwner )
{
    pthread_mutexattr_t  attr;
    int                  rc;

    /* NT mutexes are recursive */
    pthread_mutexattr_init( &attr );
    pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE_NP );

    rc = pthread_mutex_init( mutex, &attr );
    if ( rc != 0 ) {
       fprintf(stderr, "NTCREATEMUTANT pthread_mutex_init failed\n");
    }

    pthread_mutexattr_destroy(&attr);

    return (rc);
}

NTSTATUS
NtReleaseMutant( IN  pthread_mutex_t mutex,
                 OUT PLONG PreviousCount OPTIONAL )
{
    int rc;

    rc = pthread_mutex_unlock( &mutex );
    if ( rc != 0 ) {
       fprintf(stderr, "NTRELEASEMUTANT pthread_mutex_unlock failed\n");
    }

    return (rc);
}


PVOID
CreateMutex( IN PVOID   mutex,
             IN BOOL    InitialOwner,
             IN LPCTSTR Name  OPTIONAL )
{
    pthread_mutexattr_t  attr;
    int                  rc;

    /* NT mutexes are recursive */
    pthread_mutexattr_init( &attr );
    pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE_NP );

    rc = pthread_mutex_init( (pthread_mutex_t *)mutex, &attr );
    if ( rc != 0 ) {
       fprintf(stderr, "CREATEMUTEX pthread_mutex_init failed\n");
       pthread_mutexattr_destroy(&attr);
       return (NULL);
    }

    pthread_mutexattr_destroy(&attr);

    return ( mutex );
}

int
ReleaseMutex( IN  pthread_mutex_t mutex )
{
    int rc;

    rc = pthread_mutex_unlock( &mutex );
    if (rc != 0 ) {
       fprintf(stderr, "RELEASEMUTEX pthread_mutex_unlock failed\n");
    }

    return (rc);
}


int
main( int argc,
      char *argv[] )
{
    pthread_mutexattr_t  attr;
    pthread_mutex_t *mp;
    NTSTATUS Status;
    int rc = 0;

    pthread_mutexattr_init( &attr );
    pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE_NP );

    printf("Creating all mutexes ......\n");

    printf("mutex1 created by PTHREAD_MUTEX_INITIALIZER\n");

    printf("mutex2 created by pthread_mutex_init without attributes object\n");
    rc = pthread_mutex_init( &mutex2, NULL );
    if (rc != 0 ) {
        fprintf(stderr, "pthread_mutex_init NULL\n");   
    }

    printf("mutex3 created by pthread_mutex_init using attributes object\n");
    rc = pthread_mutex_init( &mutex3, &attr );
    if (rc != 0 ) {
       fprintf(stderr, "pthread_mutex_init ATTR\n");
       exit(2);
    }
    pthread_mutexattr_destroy(&attr);

    printf("mutex4 created using NtCreateMutant\n");
    Status = NtCreateMutant( &mutex4, 0, NULL, 0 );
    if (Status != 0 ) {
       fprintf(stderr, "NtCreateMutant failed\n");
       exit(3);
    }

    printf("mutex5 created using CreateMutex\n");
    mp = CreateMutex( (void *) &mutex5, 0, NULL );
    if ( mp == (pthread_mutex_t *) NULL ) {
       fprintf(stderr, "CreateMutex failed\n");
       exit(4);
    }

    printf("Locking all mutexes using pthread_mutex_lock\n");

    rc = pthread_mutex_lock( &mutex1 );
    if (rc != 0 ) {
       fprintf(stderr, "pthread_mutex_lock failed\n");
       exit(5);
    }

    rc = pthread_mutex_lock( &mutex2 );
    if (rc != 0 ) {
       fprintf(stderr, "pthread_mutex_lock failed\n");
       exit(6);
    }

    rc = pthread_mutex_lock( &mutex3 );
    if (rc != 0 ) {
       fprintf(stderr, "pthread_mutex_lock failed\n");
       exit(7);
    }
    rc = pthread_mutex_lock( &mutex4 );
    if (rc != 0 ) {
       fprintf(stderr, "pthread_mutex_lock failed\n");
       exit(8);
    }

    rc = pthread_mutex_lock( &mutex5 );
    if (rc != 0 ) {
       fprintf(stderr, "pthread_mutex_lock failed\n");
       exit(9);
    }

    printf("Unlocking all mutexes ..... \n");

    rc = pthread_mutex_unlock( &mutex1 );
    if (rc != 0 ) {
       fprintf(stderr, "pthread_mutex_unlock failed\n");
       exit(10);
    }
    fprintf(stderr, "mutex1 unlocked using pthread_mutex_unlock\n");

    rc = pthread_mutex_unlock( &mutex2 );
    if (rc != 0 ) {
       fprintf(stderr, "pthread_mutex_unlock failed\n");
       exit(11);
    }
    fprintf(stderr, "mutex2 unlocked using pthread_mutex_unlock\n");

    rc = pthread_mutex_unlock( &mutex3 );
    if (rc != 0 ) {
       fprintf(stderr, "pthread_mutex_unlock failed\n");
       exit(12);
    }
    fprintf(stderr, "mutex3 unlocked using pthread_mutex_unlock\n");

    Status = NtReleaseMutant( mutex4, NULL );
    if (Status != 0 ) {
       fprintf(stderr, "NTReleaseMutant failed\n");
       exit(13);
    }
    fprintf(stderr, "mutex4 unlocked using NtReleaseMutant\n");
    rc = ReleaseMutex( mutex5 );
    if (rc != 0 ) {
       fprintf(stderr, "ReleaseMutex failed\n");
       exit(14);
    }
    fprintf(stderr, "mutex5 unlocked using ReleaseMutex\n");

    printf("Destroying all mutexes ......\n");
    pthread_mutex_destroy( &mutex1 );
    pthread_mutex_destroy( &mutex2 );
    pthread_mutex_destroy( &mutex3 );
    pthread_mutex_destroy( &mutex4 );
    pthread_mutex_destroy( &mutex5 );

    return 0;
}


exit(1);
}
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Global variable becomes local

I have encountered a very weird behavior of a global variable in Korn Shell in AIX: A function f1 in my script pipes the output of the function f2 to a program. A variable defined as global using typeset gets its value in f2. That value is not seen in f1. If I remove the pipe ksh recognizes the... (2 Replies)
Discussion started by: odashe318
2 Replies

2. Shell Programming and Scripting

Global Variable in a script?

How to create a Global variable within a script file. say i want a varaible called LOGFILE to be used within all the script. how to do that? (2 Replies)
Discussion started by: skyineyes
2 Replies

3. Shell Programming and Scripting

global variable not being set

In ksh I thought a global variable was any variable in a script or function that did not have the typeset command. I have a global in my calling script which I increment in a function, but the value does not change in the calling script. Here is the code: function f_open_log { typeset -r... (5 Replies)
Discussion started by: robotball
5 Replies

4. Shell Programming and Scripting

Global variable

I have written a shell scritp in which i am using a variable which is declared before a while loop and i am updaitng the variable in while loop and want to use its updated value outside the loop. I am not able to do so, b'coz the scope of the variable is limited to the while loop only and when i am... (5 Replies)
Discussion started by: deepanshu
5 Replies

5. Shell Programming and Scripting

global variable not holding its value?

dear there, this kept me awake last night, the variable ${TO} in the following script doesn't seem to hold its value. I have a file ./filelist, which lists all files of interests. I group them by keywords in the filename, and would like to count total number of lines in each group. ... (7 Replies)
Discussion started by: patiobarbecue
7 Replies

6. Shell Programming and Scripting

Help with Global Variable

Hi Guyz, I have a requirement like, i have to run a script every hour to count the number of errors encountered. At the end of the day, i need to send them the total number of errors, that have ocurred the entire day. For eg. if 10 errors occurred for starting 1 hr, 5 for next 1 hr, so on.... (1 Reply)
Discussion started by: DTechBuddy
1 Replies

7. Programming

pthread_mutex_trylock usage

solved problem by myself. thanx all anyway and i couldnt find delete post button. (0 Replies)
Discussion started by: unexpected
0 Replies

8. Shell Programming and Scripting

Global variable value

Hi All, Im new to shell scripting. I am running EgA.sh and setting one global variable XYZ=0 . Also calling another EgB.sh from EgA.sh, changing the value of XYZ=10 but after executing EgB.sh, value of XYZ is still 0. Im expecting it to be 10. Anyone for help. Thanks in Advance. :) (5 Replies)
Discussion started by: paliwal
5 Replies

9. Shell Programming and Scripting

Global Variable

Hi, I have created a variable say today at the begin having 123 as its value and inside a for loop it gets resolved to some value say 150 in its first iteration. How can I use this value 150 ( 1st iteration's ) outside the scope of for loop ?. In the same way I wanted to use all iteration's... (1 Reply)
Discussion started by: penqueen
1 Replies

10. Shell Programming and Scripting

Question around Global Variable

Hi, I am using Linux and sh shell count=7 find * -prune -type d | sort -r -n | ( while read d; do if ; then echo "FOUND COUNTER1 is: $count" break 2; fi done echo "FOUND COUNTER2 is: $count" ) if ; then echo "Problem: Multiple or NO records...Please CHECK !!" fi Output: ... (4 Replies)
Discussion started by: mohtashims
4 Replies
All times are GMT -4. The time now is 12:50 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy