From 78e9c40a044cb67d600bc0fb9df2d1657f3f8f7a Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Tue, 27 Nov 2012 19:31:53 +0400 Subject: [PATCH] zdtm: Drop mutex from pthread00 test The tls_data is used for read-cycles only thus there is no need for mutex since this area get filled earlier than fork() issued. Same time on restore the tls filled before the program restarts. Signed-off-by: Cyrill Gorcunov Acked-by: Andrew Vagin Signed-off-by: Pavel Emelyanov --- test/zdtm/live/static/pthread00.c | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/test/zdtm/live/static/pthread00.c b/test/zdtm/live/static/pthread00.c index a23cfc957..d1b0b5147 100644 --- a/test/zdtm/live/static/pthread00.c +++ b/test/zdtm/live/static/pthread00.c @@ -22,7 +22,6 @@ const char *test_doc = "Create a few pthreads/forks and compare TLS and mmap data on restore\n"; const char *test_author = "Cyrill Gorcunov