Sponsored Content
Full Discussion: new thread link in home page
Contact Us Post Here to Contact Site Administrators and Moderators new thread link in home page Post 302145140 by salaathi on Tuesday 13th of November 2007 01:49:45 AM
Old 11-13-2007
new thread link in home page

Sir,

I want to post a new thread but I am not able to find a new thread link anywhere in the home page.

Every time i used to go to new post and selecting contact administrator after that there is a link for new thread is it the right method.
 

3 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Where is the Next Page link?

I can't find that link so I only can read the last 40 post messages. (4 Replies)
Discussion started by: HOUSCOUS
4 Replies

2. Solaris

How to change home page?

Hi I am new to Sun OS I am using "SunOS **** 5.9 Generic_122300-47 sun4u sparc SUNW,Sun-Fire-15000" I have logged on as user1, I could see sar -u 5 5. Now I wanted to execute the same command to another users (e.g user2) Question-1 ----------- ... (2 Replies)
Discussion started by: sbmk_design
2 Replies

3. Web Development

HTTPS-Home Page issue.

Hi Folks, This might be a very question,but i have not been able to find the solution. While accessing http://16.138.32.128/ in my LAN, i am able to read the index.html placed in DocumentRoot(/var/www/html). However if i tab in https://xx.xx.xx.xx/ ,i am only able to access the default... (0 Replies)
Discussion started by: Hari_Ganesh
0 Replies
pthread_detach(3C)														pthread_detach(3C)

NAME
pthread_detach - detach a thread SYNOPSIS
cc -mt [ flag... ] file... -lpthread [ library... ] #include <pthread.h> int pthread_detach(pthread_t thread); The pthread_detach() function is used to indicate to the implementation that storage for the thread thread can be reclaimed when that thread terminates. In other words, pthread_detach() dynamically resets the detachstate attribute of the thread to PTHREAD_CRE- ATE_DETACHED. After a successful call to this function, it would not be necessary to reclaim the thread using pthread_join(). See pthread_join(3C). If thread has not terminated, pthread_detach() will not cause it to terminate. The effect of multiple pthread_detach() calls on the same target thread is unspecified. If successful, pthread_detach() returns 0. Otherwise, an error number is returned to indicate the error. The pthread_detach() function will fail if: EINVAL The implementation has detected that the value specified by thread does not refer to a joinable thread. ESRCH No thread could be found corresponding to that specified by the given thread ID. See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ pthread_create(3C), pthread_join(3C), attributes(5), standards(5) 23 Mar 2005 pthread_detach(3C)
All times are GMT -4. The time now is 08:33 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy