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 302713351 by ksakil on Wednesday 10th of October 2012 02:18:35 PM
Old 10-10-2012
i can not post new thread

Hi scoot
Hope you are doing well!!
I didn't post any new thread, is their any problem in my access
could you please check it and let me know.
Previously posted threads was one of my interview question and i didn't understand how to solve , i am a new for shell script, i didn't find any help from other net work that's why i post and i sorry for that

Thank Regards
ksakil
 

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
pthread_rwlock_wrlock(3)				     Library Functions Manual					  pthread_rwlock_wrlock(3)

NAME
pthread_rwlock_wrlock - Acquires a read-write lock for write access. LIBRARY
DECthreads POSIX 1003.1c Library (libpthread.so) SYNOPSIS
#include <pthread.h> int pthread_rwlock_wrlock( pthread_rwlock_t *rwlock); PARAMETERS
Address of the read-write lock object to acquire for write access. DESCRIPTION
This routine attempts to acquire a read-write lock for write access. If any thread already has acquired the lock for write access or read access, the lock is not granted and the calling thread blocks until it can acquire the lock. A thread can hold only one lock for write access on a read-write lock. Results are undefined if the calling thread holds the read-write lock (whether for read or write access) at the time this routine is called. If the read-write lock object referenced by rwlock is not initialized, the results of calling this routine are undefined. If a thread is interrupted (via a Tru64 UNIX signal or an OpenVMS AST) while waiting for a read-write lock for write access, upon return from the interrupt routine the thread resumes waiting for the lock as if it had not been interrupted. Realtime applications can encounter priority inversion when using read-write locks. The problem occurs when a high-priority thread acquires a read-write lock that is about to be unlocked (that is, posted) by a low-priority thread, but the low-priority thread is preempted by a medium-priority thread. This scenario leads to priority inversion in that a high-priority thread is blocked by lower-priority threads for an unlimited period of time. During system design, realtime programmers must take into account the possibility of priority inversion and can deal with it in a number of ways, such as by having critical sections that are guarded by read-write locks execute at a high priority, so that a thread cannot be preempted while executing in its critical section. RETURN VALUES
If an error condition occurs, this routine returns an integer value indicating the type of error. Possible return values are as follows: Successful completion. The current thread already owns the read-write lock for write or read access. The value specified by rwlock does not refer to an initialized read-write lock object. ERRORS
None RELATED INFORMATION
Functions: pthread_rwlock_init(3), pthread_rwlockattr_init(3), pthread_rwlock_rdlock(3), pthread_rwlock_trywrlock(3), pthread_rwlock_unlock(3) Manuals: Guide to DECthreads and Programmer's Guide delim off pthread_rwlock_wrlock(3)
All times are GMT -4. The time now is 04:21 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy