Berkeley CSUA MOTD:Entry 19981
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/04/04 [General] UID:1000 Activity:popular
4/4     

2000/12/3-4 [Computer/SW/OS] UID:19981 Activity:low
12/2    Another pthreads question. I need to create two threads and
        a shared mutex in my program. In some cases I can create the
        first thread and the mutex, but I have problems with the
        second call to pthread_create. If I use the mutex_destroy
        at this point, my first thread doesn't like it. Is there a
        way to kill (stop) a thread that I've created?
        \_ Sounds like you need a reference count on your mutex.
           Only a guess, as your description is totally vague.
           \_ I'm basically allocating a bunch of stuff in main()
              before any work starts. If any of the allocations
              (threads, memory, mutex, etc) don't work, I try to
              clean up the allocated memory before calling exit().
              My problem is that I want to clean up the threads
              before calling exit() but I don't known how to do
              that. I'm looking for the thread equivalent of
              pthread_mutex_destroy().
                \_ dude, just read Code Complete. (get it on amazon)
                   cleanup is a trivial problem.
                   \_ Thanks.
2025/04/04 [General] UID:1000 Activity:popular
4/4     

You may also be interested in these entries...
2005/6/23-25 [Computer/SW/Languages/C_Cplusplus] UID:38255 Activity:low
6/22    Technical question:  My friend is trying to program a
        single-threaded signal based server.  He's using the icc compiler
        on 64-bit linux.  However, the following problem comes up.  The
        server is working and calls malloc.  Malloc grabs the allocation
        mutex (thread-safe!), then a signal comes in.  The signal
        interrupts malloc and calls the handler function.  The handler
	...
2004/5/14-15 [Computer/SW/OS] UID:30233 Activity:high
5/14    What's the difference between counting semaphore, binary semaphore
        and mutex semaphore.  I thought there is only one kind of semaphore,
        which blocks if the value is 0 or negative and you try to grab it.
        Otherwise it doesn't block when the value is positive, and you try to
        grab it.
        \_ I've never heard the term "mutex semaphore" before, but there's no
	...
2004/5/13-14 [Computer/SW/Languages/C_Cplusplus] UID:30202 Activity:very high
5/12    nCircle is looking for an experienced software engineer.  See
        /csua/pub/jobs/nCircle.sweng
        \_ so I have been doing java, and I still believe I'm an expert
           c/c++ programmer.  However, if you ask me what are
           the printf format parameters, I doubt I could tell you much
           other than %s.  So I can definitely get a book on c/c++ and
	...
2004/3/11-13 [Computer/SW/OS/Windows, Computer/SW/OS] UID:12626 Activity:moderate
3/12    What's the simplest way to add a mutex to C function?  I understand
        threading issues, but something is munging data in my sockets, and I
        want to guarantee that only one thread is touching a certain array at
        a time.  TIA.
        \_ How nice.  Why don't you learn how to format instead of waiting
           for one of our poor OCD inflicted nerds to do it for you?
	...
2002/1/4-6 [Computer/SW/OS] UID:23465 Activity:moderate
1/4     critical section, mutex, semaphore, monitor
        can anyone give a quick differentiation of them?
        \_ google can. try it. http://www.google.com you can use a computer
           to access it. -ali
           \_ http://www.google.com Command not found.
        \_ you taking the GRE? If you don't know what they are at this point,
	...
1999/3/12-13 [Computer/SW/Languages/C_Cplusplus] UID:15583 Activity:low
3/12    Does anyone have a simple pthreads example written in C I could look at?
        -jefe
        \_ Ya, look on the EE122 web site.
           \_ That more has to do with socket programming than phtreads.
        \_ pthread_mutex_lock(&mutex);
           pthread_create(work);
	...