how to post a thread


 
Thread Tools Search this Thread
Contact Us Post Here to Contact Site Administrators and Moderators how to post a thread
# 1  
Old 04-28-2006
Error 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
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. 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

2. 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

3. Post Here to Contact Site Administrators and Moderators

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... (2 Replies)
Discussion started by: ksakil
2 Replies

4. 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

5. 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

6. 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

7. 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

8. 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

9. 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
Login or Register to Ask a Question
pthread_getspecific(3T) 												   pthread_getspecific(3T)

NAME
pthread_getspecific(), pthread_setspecific() - get or set the thread-specific data associated with a key SYNOPSIS
PARAMETERS
key Thread-specific data key whose value for the calling thread is to be set or retrieved. value Value to be assigned to the thread-specific data key for the calling thread. DESCRIPTION
The function returns the thread-specific data value associated with key for the calling thread. If no value has been associated with key for the calling thread, NULL is returned. The function associates the thread-specific data value with key. Each thread may bind a different value to key. These values are usually pointers to memory dynamically allocated by the calling thread. key must be a valid thread-specific data key created by calling If key is not a valid thread-specific data key, undefined behavior results when calling these functions. These functions may be called from a thread-specific data destructor function. However, calling from a destructor may result in lost stor- age. RETURN VALUE
The function returns the thread-specific data value associated with key. If no thread-specific data value is currently associated with key, the value NULL is returned. If successful, returns zero. Otherwise, an error number is returned to indicate the error (the variable is not set). ERRORS
No errors are returned by the function. If any of the following occur, the function returns the corresponding error number: [ENOMEM] There is insufficient memory available in which to associate value with key. For each of the following conditions, if the condition is detected, the function returns the corresponding error number: [EINVAL] key is an invalid thread-specific data key. AUTHOR
and were derived from the IEEE POSIX P1003.1c standard. SEE ALSO
pthread_key_create(3T), pthread_key_delete(3T). STANDARDS CONFORMANCE
Pthread Library pthread_getspecific(3T)