linux-man.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Peng Haitao <penght-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
To: Michael Kerrisk <mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: linux-man-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	carlos-v2tUB8YBRSi3e3T8WW9gsA@public.gmane.org,
	aoliva-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org
Subject: Re: [PATCH] exit.3: ATTRIBUTES: Note function that is not thread-safe
Date: Mon, 20 May 2013 10:30:29 +0800	[thread overview]
Message-ID: <51998AC5.3070803@cn.fujitsu.com> (raw)
In-Reply-To: <5197C8C4.3060205-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

[-- Attachment #1: Type: text/plain, Size: 790 bytes --]


On 05/19/2013 02:30 AM, Michael Kerrisk wrote:
> 
> Ouch! Really? so one cannot call exit(3) from a multithreaded program?
> This seems a clear violation of the standard. 
> 

Yes.
I make a test program to test exit(3) which is not thread-safe.

$ gcc -o exit exit.c -lpthread
$ ./exit
Goodbye.
...
Goodbye.
Segmentation fault

> Could you provide some pointers to more information on this point (e.g., URL
> of mail thread archive discussions.)
> 

http://sourceware.org/ml/libc-alpha/2013-03/msg00004.html


-- 
Best Regards,
Peng

> Thanks,
> 
> Michael
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-man" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 


[-- Attachment #2: exit.c --]
[-- Type: text/plain, Size: 508 bytes --]

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <unistd.h>

long long int i = 0;

static void bye (void)
{
	printf ("Goodbye.\n");
}

void *thread_severity()
{
	while (1) {
		atexit(bye);
		i++;
		if ( i >= 1000000) {
			printf("i is enough.\n");
			return NULL;
		}
	}

	return NULL;
}

int main (void)
{
	pthread_t thread_severity_id, thread_fmtmsg_id;

	pthread_create(&thread_fmtmsg_id, NULL, thread_severity, NULL);

	while(1) {
		if (i >= 500000)
			exit(0);
		usleep(1000);
	}
}


  parent reply	other threads:[~2013-05-20  2:30 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-03  9:18 [PATCH] exit.3: ATTRIBUTES: Note function that is not thread-safe Peng Haitao
     [not found] ` <1367572694-21931-1-git-send-email-penght-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2013-05-18 18:30   ` Michael Kerrisk
     [not found]     ` <5197C8C4.3060205-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-05-20  2:30       ` Peng Haitao [this message]
     [not found]         ` <51998AC5.3070803-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
2014-03-25  2:56           ` penght-BthXqXjhjHXQFUHtdCDX3A

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=51998AC5.3070803@cn.fujitsu.com \
    --to=penght-bthxqxjhjhxqfuhtdcdx3a@public.gmane.org \
    --cc=aoliva-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=carlos-v2tUB8YBRSi3e3T8WW9gsA@public.gmane.org \
    --cc=linux-man-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).