繁体   English   中英

需要在Solaris 10上将线程安全std :: string用于GNU g ++ 2.95.3

[英]Need to put thread safe std::string for GNU g++ 2.95.3 on Solaris 10

std :: string在Soalris 10上显示了线程不安全行为(使用GNU g ++ 2.95.3编译)。 这是我的示例程序:

#include <iostream>
#include <string>
#include <pthread.h>
#include <stdio.h>
using namespace std;
void *Loop(void *) {
 while(1) {
  string *ps = new string("Hi");
  if (ps == NULL) {
   fprintf(stdout, "string creation failed\n");
}}}
int main (int argc, char **argv) {
 pthread_t thread1, thread2;
 fprintf(stdout, "creating threads\n");
 if(pthread_create(&thread1, NULL, Loop, NULL) == 0)
  fprintf(stdout, "thread 1 created\n");
 if(pthread_create(&thread2, NULL, Loop, NULL) == 0)
  fprintf(stdout, "thread 2 created\n");
  while(1);
  return 0;
}

我将源代码(teststl.c)编译为:

g++ -c teststl.c
g++ -o teststl teststl.o -lthread

使用的平台和编译器为:

Platform: Solaris 10
Compiler GNU g++ 2.95.3

当我运行它时:它显示,

creating threads
thread 1 created
thread 2 created
./runteststl: line 5:  1412 Bus Error               (core dumped) ./teststl 

以下是“ pstack core ”的转储

core 'core' of 14353:   ./teststl
-----------------  lwp# 1 / thread# 1  --------------------
 00011a7c main     (1, ffbff9cc, ffbff9d4, 232f8, ff2f00c0, 0) + b4
 00011798 _start   (0, 0, 0, 0, 0, 0) + 5c
-----------------  lwp# 2 / thread# 2  --------------------
 000121ec allocate__t24__default_alloc_template2b0i0Ui (20, 20, 23104, 69, 0, 0)
 + a4
 00012220 __nw__Q2t12basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc
_template2b0i0_3RepUiUi (10, 10, ff000000, 0, 0, 1) + 14
 00012260 create__Q2t12basic_string3ZcZt18string_char_traits1ZcZt24__default_all
oc_template2b0i0_3RepUi (2, 2, ff000000, 2, 1f, fffc00) + 24
 000127a4 replace__t12basic_string3ZcZt18string_char_traits1ZcZt24__default_allo
c_template2b0i0UiUiPCcUi (8df70, 0, ffffffff, 12a48, 2, 80808080) + 114
 00012a24 assign__t12basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc
_template2b0i0PCcUi (8df70, 12a48, 2, 0, ff1c0200, ff1b9210) + 24
 000129e4 assign__t12basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc
_template2b0i0PCc (8df70, 12a48, d9fd8, 129e4, ff1b03a8, ff1ba518) + 24
 00012948 __t12basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc_templ
ate2b0i0PCc (8df70, 12a48, 12800, 0, ff1c0200, 1) + 28
 00011908 Loop__FPv (0, ff07c000, 0, 0, 118d0, 0) + 38
 ff148a20 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 3 / thread# 3  --------------------
 000121ec allocate__t24__default_alloc_template2b0i0Ui (20, 20, 23104, 69, 0, 0)
 + a4
 00012220 __nw__Q2t12basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc
_template2b0i0_3RepUiUi (10, 10, ff000000, 0, 0, 1) + 14
 00012260 create__Q2t12basic_string3ZcZt18string_char_traits1ZcZt24__default_all
oc_template2b0i0_3RepUi (2, 2, ff000000, 2, 1, fffc00) + 24
 000127a4 replace__t12basic_string3ZcZt18string_char_traits1ZcZt24__default_allo
c_template2b0i0UiUiPCcUi (8df60, 0, ffffffff, 12a48, 2, 80808080) + 114
 00012a24 assign__t12basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc
_template2b0i0PCcUi (8df60, 12a48, 2, 0, ff1c0a00, ff1b9210) + 24
 000129e4 assign__t12basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc
_template2b0i0PCc (8df60, 12a48, d9fd8, 129e4, ff1b03a8, ff1ba518) + 24
 00012948 __t12basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc_templ
ate2b0i0PCc (8df60, 12a48, 12800, 0, ff1c0a00, 1) + 28
 00011908 Loop__FPv (0, fef7c000, 0, 0, 118d0, 0) + 38
 ff148a20 _lwp_start (0, 0, 0, 0, 0, 0)

这显示了争用问题。 与编译或链接标志有关系吗? 尝试了来自https://docs.oracle.com/cd/E19455-01/806-5257/compile-94179/index.html的建议,但这也不起作用。 有什么建议么?

崩溃发生在std::allocator内部,因此我认为这在GCC 2.95.3中不是线程安全的,但是我不会挖掘出要检查的古老代码。

停止使用这样的遗物。

您的编译/链接开关似乎不正确。 您需要将-pthreads添加到编译和链接步骤。 没有那些,线程不安全代码将在所有级别上使用,包括内存分配。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM