UNIX环境高级编程第11章线程

程序清单11-1打印线程ID

// threads/threadid.c 11-1
#include "apue.h"
#include <pthread.h>

pthread_t ntid;

void printids(const char* s)
{
    printf("%d ", (unsigned int)ntid);
    printf("%ld ", (unsigned long)ntid);
    pid_t     pid;
    pthread_t tid;

    pid = getpid();
    tid = pthread_self();
    // printf("%s pid %u tid %u (0x%x)\n", s, (unsigned int)pid, (unsigned int)tid, (unsigned int)tid);
    printf("%s pid %lu tid %lu (0x%lx)\n", s, (unsigned long)pid, (unsigned long)tid, (unsigned long)tid);
}

void* thr_fn(void* arg)
{
    printids("new thread: ");
    return((void *)0);
}

/*This example has two oddities, which are necessary to handle races between the main
 * thread and the new thread. (We‘ll learn better ways to deal with these conditions later
 * in this chapter.) The first is the need to sleep in the main thread. If it doesn‘t sleep, the
 * main thread might exit, thereby terminating the entire process before the new thread
 * gets a chance to run. This behavior is dependent on the operating system‘s threads
 * implementation and scheduling algorithms.
 * The second oddity is that the new thread obtains its thread ID by calling
 * pthread_self instead of reading it out of shared memory or receiving it as an
 * argument to its thread-start routine. Recall that pthread_create will return the
 * thread ID of the newly created thread through the first parameter (tidp). In our
 * example, the main thread stores this ID in ntid, but the new thread can?ˉt safely use it.
 * If the new thread runs before the main thread returns from calling pthread_create,
 * then the new thread will see the uninitialized contents of ntid instead of the thread ID.
 */
int main(void)
{
    int err;

    err = pthread_create(&ntid, NULL, thr_fn, NULL);
    if (0 != err)
        err_quit("can‘t create thread: %s\n", strerror(err));
    printids("main thread:");
    sleep(1);
    return 0;
}
 
all: threadid
threadid: threadid.c
	g++ -g -Wall threadid.c ../lib/libapue.a -I ../include -lpthread -o threadid
clean:
	rm threadid
 

这和我在虚拟机centos6.3中测试的情况不同,centos下进程ID是相同的(3607),并不是不同的。

时间: 2024-10-24 21:17:42

UNIX环境高级编程第11章线程的相关文章

UNIX环境高级编程第七章

这一章主要知识点包括:程序启动与终止,进程终止exit与_axit,atexit函数.存储空间布局,深层嵌套出错跳出函数,资源查询与更改函数等内容. 1.首先从内核传递命令行参数和环境变量值给c启动例程,然后c启动例程调用main函数,main调用其他函数.终止时, 可以使用_exit()函数或者_Exit()函数,直接调用内核结束.也可以调用exit()函数,先进行清理处理.(调用各终止处 理程序,标准I/O清理程序),然后再进入内核. 2.exit函数先调用各终止处理程序,再调用标准I/O流

UNIX环境高级编程第10章信号10.3singal函数

// signals/sigusr.c 10-1 #include "apue.h" static void sig_usr(int); /* one handler for both signals */ int main(void) { if (signal(SIGUSR1, sig_usr) == SIG_ERR) { err_sys("can't catch SIGUSR1"); } if (signal(SIGUSR2, sig_usr) == SIG_E

UNIX环境高级编程第8章进程控制 8.3fork 文件共享 vfork

#include "apue.h" /* syj 20140112 */ int glob = 6; /* external variable in initialized data */ char buf[] = "a write to stdout\n"; int main(void) { int var; /* automatic variable on the stack */ pid_t pid; var = 88; if (write(STDOUT_FI

unix环境高级编程基础知识之第二篇(3)

看了unix环境高级编程第三章,把代码也都自己敲了一遍,另主要讲解了一些IO函数,read/write/fseek/fcntl:这里主要是c函数,比较容易,看多了就熟悉了.对fcntl函数讲解比较到位,它可以得到和改变打开文件的属性(只读,只写等等,注意后面和stat区别),下面记录了自己在学习的时候一些命令及概念,供学习使用: ls 命令的含义是list显示当前目录中的文件名字.注意不加参数它显示除隐藏文件外的所有文件及目录的名字. 1)ls –a 显示当前目录中的所有文件,包含隐藏文件. 2

《Unix环境高级编程》读书笔记 第3章-文件I/O

1. 引言 Unix系统的大多数文件I/O只需用到5个函数:open.read.write.lseek以及close 本章描述的函数经常被称为不带缓冲的I/O.术语不带缓冲指的是在用户的进程中对其不会自动缓冲,每个read和write都调用内核中的一个系统调用.但是,所有磁盘I/O都要经过内核的块缓存区(也称为内核的缓冲区高速缓存).唯一例外的是对原始磁盘设备的I/O. 2. 文件描述符 对于内核而言,所有打开的文件都通过文件描述符引用.文件描述符是一个非负整数,其变化范围是0~OPEN_MAX

(九) 一起学 Unix 环境高级编程 (APUE) 之 线程

. . . . . 目录 (一) 一起学 Unix 环境高级编程 (APUE) 之 标准IO (二) 一起学 Unix 环境高级编程 (APUE) 之 文件 IO (三) 一起学 Unix 环境高级编程 (APUE) 之 文件和目录 (四) 一起学 Unix 环境高级编程 (APUE) 之 系统数据文件和信息 (五) 一起学 Unix 环境高级编程 (APUE) 之 进程环境 (六) 一起学 Unix 环境高级编程 (APUE) 之 进程控制 (七) 一起学 Unix 环境高级编程 (APUE)

UNIX环境高级编程学习笔记(第一章UNIX基础知识)

总所周知,UNIX环境高级编程是一本很经典的书,之前我粗略的看了一遍,感觉理解得不够深入. 听说写博客可以提高自己的水平,因此趁着这个机会我想把它重新看一遍,并把每一章的笔记写在博客里面. 我学习的时候使用的平台是Windows+VMware+debian,使用secureCRT来连接(可以实现多个终端连接). 因为第一章是本书大概的描述,所以第一章的我打算写得详细一点,而且书本的原话占的比例会比较多,重点的东西会用粗体显示出来. 1.1  引言 所有操作系统都为他们所运行的程序提供服务.典型的

《Unix环境高级编程》读书笔记 第7章-进程环境

1. main函数 int main( int argc, char *argv[] ); argc是命令行参数的数目,包括程序名在内 argv是指向参数的各个指针所构成的数组,即指针数组 当内核执行C程序时(使用exec函数),在调用main前先调用一个特殊的启动例程.可执行程序文件将此启动例程指定为程序的起始地址——这是由连接器设置的,而连接器则是由C编译器调用.启动例程从内核取得命令行参数和环境变量值,然后按上述方式调用main函数做好安排. 2. 进程终止 有8种方式使进程终止,其中5种

【转】apue《UNIX环境高级编程第三版》第一章答案详解

原文网址:http://blog.csdn.net/hubbybob1/article/details/40859835 大家好,从这周开始学习apue<UNIX环境高级编程第三版>,在此,我要感谢网易的一个工程师朋友和室友,没有他们,我不会开始真正的学习这本书,希望大家以后开始慢慢进步.废话少说,直接上课后习题了. UNIX高级编程第一章习题答案: 1.1在系统上验证,除根目录外,目录l和l l是不同的. 答:这个验证有很多方法可使用命令ls .cd.vim等,目录.指向当前目录,目录..指