Sponsored Content
Top Forums Programming pthread_mutex_init v. sem_init v. sem_get Post 302076482 by siegfried on Tuesday 13th of June 2006 01:17:06 PM
Old 06-13-2006
pthread_mutex_init v. sem_init v. sem_get

Apparently there are three similar features in the linux API. Can someone explain the difference between the data structures that are initialized by these functions:

(1) pthread_mutex_init
(2) sem_init
(3) sem_get

Thanks,
Siegfried
 

We Also Found This Discussion For You

1. Programming

Undefined: sem_init, sem_post, sem_wait

Hi friends, I am using semaphores in my program, but when I compile the program, it gives the following error $ gcc sem.c -o sem -lpthread Undefined first referenced symbol in file sem_init ... (1 Reply)
Discussion started by: gabam
1 Replies
pthread_mutexattr_init(3)				     Library Functions Manual					 pthread_mutexattr_init(3)

NAME
pthread_mutexattr_init - Initializes a mutex attributes object. LIBRARY
DECthreads POSIX 1003.1c Library (libpthread.so) SYNOPSIS
#include <pthread.h> int pthread_mutexattr_init( pthread_mutexattr_t *attr); STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: IEEE Std 1003.1c-1995, POSIX System Application Program Interface PARAMETERS
Address of the mutex attributes object to be initialized. DESCRIPTION
This routine initializes the mutex attributes object specified by the attr argument with a set of default values. A mutex attributes object is used to specify the attributes of one or more mutexes when they are created. The attributes object created by this routine is used only in calls to the pthread_mutex_init(3) routine. When a mutex attributes object is used to create a mutex, the values of the individual attributes determine the characteristics of the new mutex. Thus, attributes objects act as additional arguments to mutex creation. Changing individual attributes in an attributes object does not affect any mutexes that were previously created using that attributes object. You can use the same mutex attributes object in successive calls to pthread_mutex_init(3), from any thread. If multiple threads can change attributes in a shared mutex attributes object, your program must use a mutex to protect the integrity of the attributes object's contents. Results are undefined if this routine is called and the attr argument specifies a mutex attributes object that is already initialized. RETURN VALUES
If an error condition occurs, this routine returns an integer value indicating the type of error. Possible return values are as follows: Successful completion. Insufficient memory to create the mutex attributes object. ERRORS
None RELATED INFORMATION
Functions: pthread_mutexattr_destroy(3), pthread_mutexattr_gettype(3), pthread_mutexattr_settype(3), pthread_mutex_init(3) Manuals: Guide to DECthreads and Programmer's Guide delim off pthread_mutexattr_init(3)
All times are GMT -4. The time now is 02:24 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy