Sponsored Content
Full Discussion: Need to delete the post
Contact Us Post Here to Contact Site Administrators and Moderators Need to delete the post Post 302958925 by arjunprathap on Tuesday 27th of October 2015 12:00:08 PM
Old 10-27-2015
There is a reference at the bottom of the thread. Please mask that as well.
 

6 More Discussions You Might Find Interesting

1. Forum Support Area for Unregistered Users & Account Problems

Delete post please

Admin: I have 2 postings for FTP issues can you delete both of them. I resolve the problems by myself. Thanks (1 Reply)
Discussion started by: newbie05
1 Replies

2. Post Here to Contact Site Administrators and Moderators

How to Delete a Post

Hi, I have created a new thread. I dont need that thread now. How should I delete it? Nobody has replied yet. Regd, M (5 Replies)
Discussion started by: mahatma
5 Replies

3. Post Here to Contact Site Administrators and Moderators

Delete post

ADMIN: Please delete my following post: How to print out last part of awk token/string? Thank you (1 Reply)
Discussion started by: rory7902
1 Replies

4. Post Here to Contact Site Administrators and Moderators

Please delete the post

Hi Moderator.. Please delete all my post.. some my post has confidential details of my company... i unknowning posted that ... is it possible to remove those.. i couldn't able to edit those bz those r closed .. (1 Reply)
Discussion started by: girija
1 Replies

5. Post Here to Contact Site Administrators and Moderators

Please delete my post which was posted wrongly

Hi Moderator, Please delete the below post which i posted by mistake.Thanks in advance. https://www.unix.com/shell-programming-and-scripting/260605-closed-script-not-working-new-post.html Kindly help me on this. Thanks, vijay (1 Reply)
Discussion started by: bhas85
1 Replies

6. Post Here to Contact Site Administrators and Moderators

Delete all my post

Dear administrator Please delete all my posting, topics and user account. I will create a new user account myself. Thanks for the effort render. (2 Replies)
Discussion started by: houmingc
2 Replies
PTHREAD_SIGMASK(3)					   BSD Library Functions Manual 					PTHREAD_SIGMASK(3)

NAME
pthread_sigmask -- examine and/or change a thread's signal mask LIBRARY
POSIX Threads Library (libpthread, -lpthread) SYNOPSIS
#include <pthread.h> #include <signal.h> int pthread_sigmask(int how, const sigset_t * restrict set, sigset_t * restrict oset); DESCRIPTION
The pthread_sigmask() function examines and/or changes the calling thread's signal mask. If set is not NULL, it specifies a set of signals to be modified, and how specifies what to set the signal mask to: SIG_BLOCK Union of the current mask and set. SIG_UNBLOCK Intersection of the current mask and the complement of set. SIG_SETMASK set. If oset is not NULL, the previous signal mask is stored in the location pointed to by oset. SIGKILL and SIGSTOP cannot be blocked, and will be silently ignored if included in the signal mask. RETURN VALUES
If successful, pthread_sigmask() returns 0. Otherwise, an error is returned. ERRORS
The pthread_sigmask() function will fail if: [EINVAL] how is not one of the defined values. SEE ALSO
sigaction(2), sigpending(2), sigprocmask(2), sigsuspend(2), sigsetops(3) STANDARDS
The pthread_sigmask() function conforms to ISO/IEC 9945-1:1996 (``POSIX.1'') BSD
February 19, 2011 BSD
All times are GMT -4. The time now is 05:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy