Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

sem_unlink(2) [osx man page]

SEM_UNLINK(2)						      BSD System Calls Manual						     SEM_UNLINK(2)

NAME
sem_unlink -- remove a named semaphore SYNOPSIS
#include <semaphore.h> int sem_unlink(const char *name); DESCRIPTION
The named semaphore named name is removed. If the semaphore is in use by other processes, then name is immediately disassociated with the semaphore, but the semaphore itself will not be removed until all references to it have been closed. Subsequent calls to sem_open() using name will refer to or create a new semaphore named name. If successful, sem_unlink() will return 0. Otherwise, -1 is returned and errno is set, and the state of the semaphore is unchanged. ERRORS
sem_unlink() succeeds unless: [EACCES] Permission is denied to be remove the semaphore. [ENAMETOOLONG] name exceeded SEM_NAME_LEN characters. [ENOENT] The named semaphore does not exist. SEE ALSO
sem_close(2), sem_open(2), semctl(2), semget(2), semop(2) HISTORY
sem_unlink() is specified in the POSIX Realtime Extension (1003.1b-1993/1003.1i-1995). Darwin June 8, 2000 Darwin

Check Out this Related Man Page

SEM_UNLINK(3)						     Linux Programmer's Manual						     SEM_UNLINK(3)

NAME
sem_unlink - remove a named semaphore SYNOPSIS
#include <semaphore.h> int sem_unlink(const char *name); Link with -lrt or -pthread. DESCRIPTION
sem_unlink() removes the named semaphore referred to by name. The semaphore name is removed immediately. The semaphore is destroyed once all other processes that have the semaphore open close it. RETURN VALUE
On success sem_unlink() returns 0; on error, -1 is returned, with errno set to indicate the error. ERRORS
EACCES The caller does not have permission to unlink this semaphore. ENAMETOOLONG name was too long. ENOENT There is no semaphore with the given name. CONFORMING TO
POSIX.1-2001. SEE ALSO
sem_getvalue(3), sem_open(3), sem_post(3), sem_wait(3), sem_overview(7) COLOPHON
This page is part of release 3.27 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 2006-03-25 SEM_UNLINK(3)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

semget failed for the semaphore

Hi Everyone I am having trouble using fbackup under SAM in HP-UX 10.20. I'm trying to perform a full backup of the entire system and keep bombing out and I am not sure why. Below is the result from the SAM window showing that fbackup has failed Starting interactive backup... br_backup:... (2 Replies)
Discussion started by: zippy
2 Replies

2. UNIX for Advanced & Expert Users

Extend semget on Solaris

Hello evry body, I search to do a extend from semaphore on a SunOS 5.5.1 . I know the /etc/system file but I don't know the code line to put in this file . Help me a find a solution for my computer . Merci d'avance . (1 Reply)
Discussion started by: Romeo_91
1 Replies

3. UNIX for Dummies Questions & Answers

semaphore

hi, is there any command where we can monitor semaphores? (1 Reply)
Discussion started by: yls177
1 Replies

4. UNIX for Dummies Questions & Answers

Darwin x86

so, what's everyone's opinion on Darwin (x86 rendition)? is it worth installing at the moment? pros? cons? comments? (5 Replies)
Discussion started by: Karma
5 Replies

5. Programming

Example for use of kernel semaphore

Hi friends I'm doing a project and in that I need to use kernel semaphore but I'm not very clear about how to use it. I've used system V semaphore. What I find difficult to understand is that in system V semaphore, a semaphore set is registered to the system (the semid returned from semget call... (3 Replies)
Discussion started by: Rakesh Ranjan
3 Replies

6. Programming

change semaphore perm

Hi, I've a problem with this simple code about of semaphore: #include<stdio.h> #include<stdlib.h> #include<unistd.h> #include<semaphore.h> #include<sys/types.h> #include<sys/mman.h> #include<sys/fcntl.h> #define SemName "/SEM_1" int main (int argc, char **argv) { char name;... (5 Replies)
Discussion started by: FastMagister
5 Replies

7. Programming

semaphore limits

Hi Could anybody tell me how can i see the semaphore limits on my system. I am using solaris 8. Thanks in advance (2 Replies)
Discussion started by: axes
2 Replies

8. Programming

replacing of the mutex with POSIX semaphore

Hi, does anybody know, if it is possible to replace mutex with POSIX semaphore? I'm gonna to rewrite old thread's program with processes and I don't want rewrite most of the code...So if I replace the threads with processes and mutexes with semaphores WILL IT WORK? Before, the critical... (1 Reply)
Discussion started by: michael26100
1 Replies

9. UNIX for Dummies Questions & Answers

what is diff b/w semaphore and mutex

can u tell me what is the exact difference b/w mutex and semaphore and what is the diff b/w counting semaphore and binary semaphore amit (1 Reply)
Discussion started by: amitpansuria
1 Replies

10. UNIX for Advanced & Expert Users

semaphore concept

Hi All, I am going through the semaphore concept and have a doubt regarding the same and hope to get a resolution here. I have a file which has a number of records. I want to write an application (in C) which will be able to do concurrent read/write on these records. Of what I have... (8 Replies)
Discussion started by: maverix
8 Replies

11. AIX

how to clean Unused semaphore??

How can i clean up my unused semaphore??? (4 Replies)
Discussion started by: abhishek27
4 Replies

12. Programming

List of suspended tasks on a semaphore/message queue

Hi, I have created a posix semaphore. Is it possible to have a functionality, wherein I can reset the semaphore. ie All the tasks waiting for the semaphore will be signalled and will return with error values and the semaphore value will be set to its initial value. Is there a way to get a... (1 Reply)
Discussion started by: taklubaba
1 Replies

13. UNIX for Dummies Questions & Answers

Determining which processes hold a semaphore

I have a situation where I have created a semaphore and set it's value to 10. I am using this semaphore to control access to a shared memory location. I can have 10 processes simultaneously read from the shared memory location, process 11 would get locked out. My question is, is there a way I... (6 Replies)
Discussion started by: tpotter01
6 Replies

14. UNIX for Dummies Questions & Answers

semaphore

what is semaphore? can any body explain it in a more simple way than the manual ?? replies appreciated Regards raguram R (7 Replies)
Discussion started by: raguramtgr
7 Replies

15. Programming

semaphore memory

If say a process creates a semaphore/mutex etc then will this semaphore get created in its address space? If yes then how an another process which wants to acquire this semaphore(created by the first process) will access the other process address space to acquire the semaphore? Where I mean in... (2 Replies)
Discussion started by: rupeshkp728
2 Replies