Sponsored Content
Full Discussion: i can not post new thread
Contact Us Post Here to Contact Site Administrators and Moderators i can not post new thread Post 302713359 by Scott on Wednesday 10th of October 2012 02:29:12 PM
Old 10-10-2012
Hi.

There is no restriction on your account. But you should post in the forum appropriate to your question. "Contact Us" forums are not for posting technical questions.

Go to the homepage, The UNIX and Linux Forums - Where There is a Shell There is a Way, and click on the forum that you feel best fits your question. When you get there, click "New Thread".

If you are experiencing problems posting, please provide more information, and screenshots, such that we can assist you better.

Thanks and regards,

Scoot.
 

9 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

how to post a thread

I am not getting post new thread button when i was logged in. tell me how to do this. i want to print data between two lines in a file into another file. which command should i use in UNIX (0 Replies)
Discussion started by: kamesh83
0 Replies

2. Forum Support Area for Unregistered Users & Account Problems

Help I can not Post a Thread

I can not Post a Thread. (1 Reply)
Discussion started by: spiderman3k
1 Replies

3. Forum Support Area for Unregistered Users & Account Problems

i cannot able to post the thread

hi, Pls help me .. i cannot able to post the threads (1 Reply)
Discussion started by: am_73798
1 Replies

4. Forum Support Area for Unregistered Users & Account Problems

help to post a thread

hi,, sorry, couldnt navigate myself to post a new thread, pls guide if possible Thanks santhosh (1 Reply)
Discussion started by: santy_33
1 Replies

5. Post Here to Contact Site Administrators and Moderators

How do I post new thread

Can you tell me how to post a new thread? Please help me ASAP. Thanks, Dipakg (2 Replies)
Discussion started by: dipakg
2 Replies

6. Post Here to Contact Site Administrators and Moderators

How to post a new thread

Im new to this forum. can you guide me how to post a new thread. Thanks in advance Hari (3 Replies)
Discussion started by: Hari123
3 Replies

7. Post Here to Contact Site Administrators and Moderators

Can't post new thread

Hi, I've tried 3 times to post a new thread and for whatever reason it's not happening, hope you can help Thanks (11 Replies)
Discussion started by: saddlerken
11 Replies

8. Forum Support Area for Unregistered Users & Account Problems

Not able to post thread/reply to thread

Dear Moderator I am not able to post any new thread or post reply to mine old thread. Kindly help as i am stuck on one problem and needed suggestion. Regards Jaydeep (1 Reply)
Discussion started by: jaydeep_sadaria
1 Replies

9. Post Here to Contact Site Administrators and Moderators

How to post a new thread?

Just joined and registered 15 minutes ago. Can't figure out how to post a new question about 'grep' I searched and found that I need to click the 'New Thread' button, I couldn't see any 'New Thread' buttons anywhere, so I searched around and ended up here where I DO see a 'new thread' button....... (3 Replies)
Discussion started by: TuftyDave
3 Replies
postwait(2)							System Calls Manual						       postwait(2)

NAME
postwait: pw_getukid(), pw_wait(), pw_post(), pw_postv(), pw_getvmax() - lightweight synchronization mechanism SYNOPSIS
DESCRIPTION
Postwait is a fast, lightweight sleep/wakeup mechanism that can be used for synchronization by cooperating kernel threads within a single process or between separate processes. A thread calls to block. It resumes execution when it is posted by another thread, the call expires, or is signaled. If one or more posts are already pending, returns immediately. Threads using postwait are identified by their ukid. A thread retrieves its ukid by calling It shares this ukid with anyone it chooses by any means it considers appropriate (for example, shared memory). is called with a timeout ts. If ts is NULL, the thread will not timeout. It will remain blocked until posted or a signal wakes it up. If ts points to a zero-valued timespec, will return immediately with a value (and indicating whether or not it was posted. If ts points to a timespec whose value is greater than zero, the thread will block for that amount of time unless it is posted or inter- rupted by a signal, in which case the timespec pointed to by ts is updated with the remaining time. The return value and are set to indi- cate the reason the call returned. is used to post many threads with a single call. It posts to all threads in the targets array. An value for each target is returned in the errors array. (0 indicates success.) If the errors pointer is zero, no target-specific errors are copied out. There is a maximum number of threads that can be posted with a single call. This value is returned by Posts sent to a kernel thread that already has a post pending against it are discarded. RETURN VALUE
returns 0 if it succeeds, -1 otherwise. returns 0 if posted, -1 otherwise. returns 0 if the post succeeds, -1 otherwise. returns 0 if every post succeeds, -1 otherwise. returns the maximum number of kernel threads that can be posted with a single call to ERRORS
sets to one of the following values if it fails: ukid points to an illegal address. The reliable detection of this error is implementation dependent. sets to one of the following values if it fails: was called with a timeout of 0 but the caller has no post(s) pending. was called with a timeout that expired. ts points to an illegal address. The reliable detection of this error is implementation dependent. was interrupted by a signal. The timespec pointed to by ts is invalid. sets to one of the following values if it fails: The ukid refers to a non-existent kernel thread. sets to one of the following values if it fails: targets points to an illegal address. The reliable detection of this error is implementation dependent. errors points to an illegal address. The reliable detection of this error is implementation dependent. count is less than 0. count exceeds the maximum value (as returned by A ukid refers to a non-existent kernel thread. postwait(2)
All times are GMT -4. The time now is 07:00 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy