LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 08-01-2004, 03:17 PM   #1
ugenn
Member
 
Registered: Apr 2002
Posts: 549

Rep: Reputation: 30
Local synchronisation


Does any local synchronisation mechanism (eg mutexes, but local to a process) exist in Linux and what are the system calls involved?
 
Old 08-01-2004, 03:42 PM   #2
itsme86
Senior Member
 
Registered: Jan 2004
Location: Oregon, USA
Distribution: Slackware
Posts: 1,246

Rep: Reputation: 59
I know pthreads has mutex support built right into the library, but I very rarely build threaded apps so I couldn't tell you what the function calls are off the top of my head.
 
Old 08-01-2004, 03:50 PM   #3
ugenn
Member
 
Registered: Apr 2002
Posts: 549

Original Poster
Rep: Reputation: 30
Thanks, I'll look into it.
 
Old 08-01-2004, 03:59 PM   #4
infamous41md
Member
 
Registered: Mar 2003
Posts: 804

Rep: Reputation: 30
pthread mutexes, condition variables, and read/write locks are implemented as user space libraries, there are no system calls directly associated with functions that operate on them - there are a number of different ways to implement them. ie FIFOS, mmap'd files and so on. on the other hand, you have SYSV semaphores, which are implemented in the kernel as system calls. see man ipc, which will lead u to semop and friends. for pthread functions, try:
man pthread_mutex_lock, man pthread_cond_wait, man pthread_rwlock_rdlock
 
Old 08-01-2004, 05:23 PM   #5
Mara
Moderator
 
Registered: Feb 2002
Location: Grenoble
Distribution: Debian
Posts: 9,696

Rep: Reputation: 232Reputation: 232Reputation: 232
You got a list of man command you may try to look into, I'd add that to use pthread* functions you'd need to link your program with -lpthread option.
 
Old 09-14-2005, 01:01 AM   #6
JanusPaul
Member
 
Registered: Nov 2004
Location: Houston, Texas
Distribution: Ubuntu, Debian, Solaris, Free BSD
Posts: 82

Rep: Reputation: 15
Question:

If I have a function setup for common reference of searching/push/poping a pointer chain structure system, with, lets say syntax for read locking when merely searching the chain, and write locking for when chain elements are created/deleted, is there anyway to allow the same thread to call the function from within the function using BOTH a write and read lock?

Code:
	#define	PTHREAD_LOCK_TYPE					pthread_rwlock_t
	#define	PTHREAD_LOCK_RDLOCK					pthread_rwlock_rdlock
	#define	PTHREAD_LOCK_WRLOCK					pthread_rwlock_wrlock
	#define	PTHREAD_LOCK_UNLOCK					pthread_rwlock_unlock
	#define	PTHREAD_LOCK_INITIALIZER				PTHREAD_RWLOCK_INITIALIZER

		extern	"C" ServerUserPtr				userInfo( Flags flags, ... )
	{
		if ( flags & FLAG_MODE_SELECT )
			PTHREAD_LOCK_RDLOCK( &gUserLock );
		else
			PTHREAD_LOCK_WRLOCK( &gUserLock );

		switch ( flags & 0x000000FF )
		{
			case FLAG_MODE_SELECT:
				(search)
				break;
			case FLAG_MODE_DELETE:
				(delete)
				break;
			case FLAG_MODE_CREATE:
				if ( userInfo( FLAG_MODE_SELECT | FLAG_DATA_USER_USERID, userID ) )
					break;
				(create)
				break;
		}

		PTHREAD_LOCK_UNLOCK( &gUserLock );

		return userPtr;
	}
A condensed version of http://dls.palacecommunity.com/open/...sion_users.cpp

Basically, during the creation phase, userInfo will call itself inorder to make user 'userID' is unique for this user. Is there anyway to allow recursive read/write calls to the same function with both a read/write lock under the same thread to make something like this possible? Mutex locks recursive calling within the same thread works, but, it would be nice to have read/write locking instead - quicker access to shared resources.
 
Old 09-14-2005, 01:16 PM   #7
JanusPaul
Member
 
Registered: Nov 2004
Location: Houston, Texas
Distribution: Ubuntu, Debian, Solaris, Free BSD
Posts: 82

Rep: Reputation: 15
Nobody can help with this mutex rwlock stuff?
 
Old 09-14-2005, 05:38 PM   #8
JanusPaul
Member
 
Registered: Nov 2004
Location: Houston, Texas
Distribution: Ubuntu, Debian, Solaris, Free BSD
Posts: 82

Rep: Reputation: 15
Nevermind, my screw up.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Hard disk synchronisation software? timread Linux - Software 3 06-17-2004 03:14 AM
Palm Synchronisation mdbarton Linux - Laptop and Netbook 8 12-09-2003 08:05 AM
Server Time Synchronisation mattingg Linux - Software 4 12-04-2003 10:48 PM
Database Synchronisation saravanan1979 Programming 2 02-15-2002 10:11 PM
Data synchronisation saravanan1979 Programming 0 02-08-2002 03:35 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 06:00 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration