Sponsored Content
Full Discussion: mutexing with sysv calls
Top Forums Programming mutexing with sysv calls Post 302286096 by otheus on Tuesday 10th of February 2009 10:09:47 AM
Old 02-10-2009
Question mutexing with sysv calls

My question is: what's the best way to implement mutual exclusion for a shared memory segment. I want to ensure that while updating a shared memory segment that another process will not get read part of the segment before and the other part after the update. (I also want to ensure that the update itself is not clobbered by another update.)

My update looks something like this:
Code:
      semkey = ftok(CONFIG_FILE,1);
      shmid = shmget(semkey, SHARED_POOL_SIZE, 0444);
      if (-1 == shmid) {
	  /* new shared memory segment -- initialize */
          isnew = 1;
          shmid = shmget(semkey, SHARED_POOL_SIZE,
                  IPC_CREAT | IPC_CREAT | SHM_NORESERVE | shm_unlocked );
          shmctl(shmid, IPC_STAT, &semstat);
      }
      else {
	  /* already exists -- grab pointer to it */
	  shmctl(shmid, IPC_STAT, &semstat);
	  stat(CONFIG_FILE, &confstat);
      }
      /* shmid is ID of our shared memory segment */
      if (shmid < 0 || isnew || confstat.st_mtime > semstat.shm_ctime) {
	  /* update it */
	  /* parse the file */
	  config_parse(&config);

	  pconfig = shmat(shmid, NULL, 0);
	  /* update the shared segment */
	  if ((void*)-1 != pconfig) {

	    /* MUTAL WRITE EXCLUSION NEEDED HERE */
	    memcpy(pconfig, &config, sizeof(struct config_data));
	    /* update the timestamp */
	    shmctl(shmid, IPC_SET, &semstat);
	    /* END MUTEX */
	    shmdt(pconfig);
	  }
      }

My reader code looks like this:
Code:
      semkey = ftok(CONFIG_FILE,1);
      shmid = shmget(semkey,128, 0444);
      pconfig = shmat(shmid, NULL, SHM_RDONLY);
      if ((void*)-1 == pconfig) {
	/* error recovery */
      }
      else {

        /* NEED MUTEX HERE */
        memcpy(&config, pconfig, sizeof(struct config_data));
        /* END MUTEX  */
      }

 

8 More Discussions You Might Find Interesting

1. IP Networking

Identification of data calls & voice calls

Is there any facility to filter/identify the data calls and voice calls coming throug modem? OR Can we get the data or voice calls information through a script(preferably C Kermit)? (0 Replies)
Discussion started by: pcsaji
0 Replies

2. UNIX Desktop Questions & Answers

Using system calls

Hi, I'm new to UNIX system calls. Can someone share your knowledge as to how exactly system calls should be executed? Can they be typed like commands such as mkdir on the terminal itself? Also, are there any websites which will show me an example of the output to expect when a system call like... (1 Reply)
Discussion started by: ilavenil
1 Replies

3. BSD

system calls

what is the functions and relationship between fork,exec,wait system calls as i am a beginer just want the fundamentals. (1 Reply)
Discussion started by: sangramdas
1 Replies

4. UNIX for Dummies Questions & Answers

About system calls.

Hi all, I am new here . I want to know about system call in detail. As system calls are also function .How system identifies it.:) (2 Replies)
Discussion started by: vishwasrao
2 Replies

5. Shell Programming and Scripting

c++ calls bash

hi, i'm a noob i have a quuestion: is possible to call and run the bash script by c++ program? if so, is it posible in grafic? specially Qt ? thanks (8 Replies)
Discussion started by: 3.14.TR
8 Replies

6. UNIX for Dummies Questions & Answers

system calls in C

Hello, how would i be able to call ps in C programming? thanks, ---------- Post updated at 01:39 AM ---------- Previous update was at 01:31 AM ---------- here's the complete system call, ps -o pid -p %d, getpit() (2 Replies)
Discussion started by: l flipboi l
2 Replies

7. Solaris

SysV package creation, how to predefine DESTDIR

Hi Solaris experts How to predefine the DESTDIR in a Solaris package? Thanks (1 Reply)
Discussion started by: ./hari.sh
1 Replies

8. SCO

Trouble with sysv floppy images created under Linux

Hello, I wonder if anybody could help. I'm running SCO Xenix under Qemu on Xubuntu 16.04. I created a SYSV floppy image, but the files on it are poorly displayed when I mounted it under Xenix. I tried to create and format this image under Ubuntu as well as under Xenix. How could I create a... (6 Replies)
Discussion started by: Neelix
6 Replies
SHMAT(2)						      BSD System Calls Manual							  SHMAT(2)

NAME
shmat, shmdt -- attach or detach shared memory LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <sys/types.h> #include <sys/ipc.h> #include <sys/shm.h> void * shmat(int shmid, const void *addr, int flag); int shmdt(const void *addr); DESCRIPTION
The shmat() system call attaches the shared memory segment identified by shmid to the calling process's address space. The address where the segment is attached is determined as follows: o If addr is 0, the segment is attached at an address selected by the kernel. o If addr is nonzero and SHM_RND is not specified in flag, the segment is attached the specified address. o If addr is specified and SHM_RND is specified, addr is rounded down to the nearest multiple of SHMLBA. The shmdt() system call detaches the shared memory segment at the address specified by addr from the calling process's address space. RETURN VALUES
Upon success, shmat() returns the address where the segment is attached; otherwise, -1 is returned and errno is set to indicate the error. The shmdt() function returns the value 0 if successful; otherwise the value -1 is returned and the global variable errno is set to indicate the error. ERRORS
The shmat() system call will fail if: [EINVAL] No shared memory segment was found corresponding to shmid. [EINVAL] The addr argument was not an acceptable address. The shmdt() system call will fail if: [EINVAL] The addr argument does not point to a shared memory segment. SEE ALSO
shmctl(2), shmget(2) BSD
August 2, 1995 BSD
All times are GMT -4. The time now is 04:39 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy