Sponsored Content
Full Discussion: Approved Posts
Contact Us Post Here to Contact Site Administrators and Moderators Approved Posts Post 302342309 by cezar.elnazli on Saturday 8th of August 2009 04:54:02 PM
Old 08-08-2009
Approved Posts

How long does it take for someone in the staff to approve a new thread, and how do I know if the thread has been approved/disapproved? I've made one which does include URLs. And if this one is approved, are the further ones going to be approved automatically?

I've searched for it, nothing came up.
 

4 More Discussions You Might Find Interesting

1. What is on Your Mind?

old posts

this thread, while intended to help address a possible glitch with the bb software, prompted me to take a look at the easliest posts here at unix.com while doing that i found this thread. the post there by neo is fun to read :D (0 Replies)
Discussion started by: norsk hedensk
0 Replies

2. Post Here to Contact Site Administrators and Moderators

new posts..

there is a link to see the new posts. but this give only new posts posted today. if i want to see the yesterdays post or all the posts in the posted order(new posts first and so on).. wat should i do?.. (1 Reply)
Discussion started by: sekar sundaram
1 Replies

3. Post Here to Contact Site Administrators and Moderators

How to get approved to post

I have tried to answer several posts, but my posts are being held for a moderator to approve. What needs to happen before I am able to post without moderator approval? Thanks, Craig (csharp2a) (1 Reply)
Discussion started by: csharp2a
1 Replies

4. Forum Support Area for Unregistered Users & Account Problems

10 posts

Hey Scott, what's going on? I still can't post. After you sent me private message I can't reply to it. It says I have to have 10 posts to reply. And what do you mean why I need 10 posts - I needed 10 posts to ask a question. From the beginning: 1. I registered to ask a question. 2. I activated... (3 Replies)
Discussion started by: useretail
3 Replies
iv_thread(3)						    ivykis programmer's manual						      iv_thread(3)

NAME
iv_thread_create, iv_thread_set_debug_state - ivykis thread convenience functions SYNOPSIS
#include <iv_thread.h> int iv_thread_create(char *name, void (*start_routine)(void *), void *arg); void iv_thread_set_debug_state(int state); DESCRIPTION
iv_thread_create is a wrapper around pthread_create(3) which will maintain an ivykis main loop reference in the calling thread (which must be an ivykis(3) thread, i.e. have had iv_init(3) called in it) for as long as the created thread is alive. Maintaining a reference on the calling thread's ivykis event loop makes sure that the calling thread will not return from its ivykis main loop before the created thread exits, as that could cause cleanup still happening in the created thread to be interrupted when the calling thread subsequently calls exit(3). The created thread need not be an ivykis thread. Enabling debugging by calling iv_thread_set_debug with a nonzero argument will print a debug message to standard error whenever a thread is created via iv_thread_create, whenever a thread so created terminates normally by returning from its start_routine, self-terminates by calling pthread_exit(3), or is successfully canceled by pthread_cancel(3), and whenever destruction of such a thread is signaled back to the calling thread. For inter-thread signaling, iv_thread uses iv_event(3). SEE ALSO
ivykis(3), iv_event(3), exit(3), pthread_cancel(3), pthread_create(3), pthread_exit(3) ivykis 2010-09-13 iv_thread(3)
All times are GMT -4. The time now is 09:08 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy