为了测试获取线程id,所以用
#include <unistd.h>
pid_t tid = gettid();
cout << "now pid is:" << tid << endl;
但是每次编译都会报错:
[root@localhost cpp]# g++ test.cpp -o test -lpthread
test.cpp: 在函数‘void* say_hello(void*)’中:
test.cpp:16:20: 错误:‘gettid’在此作用域中尚未声明
pid_t tid = gettid();
解决办法:
加入以下,
#include <unistd.h>
#include <sys/syscall.h>
#define gettid() syscall(SYS_gettid)
贴完整测试代码:
#include <iostream>
#include <ctime>
#include <cstdlib>
#include <pthread.h>
#include <unistd.h>
#include <sys/syscall.h>
#define gettid() syscall(SYS_gettid)
using namespace std;
#define NUM_THREADS 5
void* say_hello(void* args)
{
cout << "Hello Runoob!" << endl;
pid_t tid = gettid();
cout << "now pid is:" << tid << endl;
return 0;
}
int main()
{
pthread_t tids[NUM_THREADS];
for (int i = 0; i < NUM_THREADS; ++i)
{
int ret = pthread_create(&tids[i], NULL, say_hello, NULL);
if (ret != 0)
{
cout << "pthread_create error: error_code=" << ret << endl;
}
else
{
cout << "tids:" << tids[i] << endl;
}
}
pthread_exit(NULL);
cin.get();
return 0;
}
为了测试获取线程id,所以用#include &lt;unistd.h&gt;pid_t tid = gettid(); cout &lt;&lt; "now pid is:" &lt;&lt; tid &lt;&lt; endl; 但是每次编译都会报错:[root@localhost cpp]# g++ test.cpp -o test -lpthreadtest.cpp: ...
在多
线程
程序里面需要
获取
线程
的
id
,而不是本进程的
id
(用getp
id
()),这是可以调用函数get
tid
()
但
编译
时会提示
wtfc_net_main.
cpp
:350:
错误
:‘get
tid
’在此
作用域
中
尚未
声明
这时可以用系统调用的方法实现,调用函数
syscall(SYS_get
tid
)
需要包含头文件
#include
top -Hp ‘p
id
’
cd /usr/local/src
wget https://cdn.mysql.com//Downloads/MySQL-8.0/mysql-boost-8.0.
20
.tar.gz
wget https://cmake.org/files/v3.12/cmake-3.12.0-rc1.tar.gz
yum install -y gcc gcc-
c++
make automake cmake ncurses ncurses-devel
http://blog.csdn.net/pipisorry/article/details/42525939
建议参考[Python核心编程2ed.pdf: 11.8 变量
作用域
]
Python 标识符与保留字(关键字)
[Python 标识符与保留字(关键字) ]
python全局变量
在python
中
,True和False是全局变量,因此:
False = True
if Fa...