`
东边日出西边雨
  • 浏览: 262260 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

1.最基本的

阅读更多

最简单的多线程程序,不多说。

 

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

void *print_message_function( void *ptr );

main()
{
     pthread_t thread1, thread2;
     char *message1 = "Thread 1";
     char *message2 = "Thread 2";
     int  iret1, iret2;

    /* Create independent threads each of which will execute function */

     iret1 = pthread_create( &thread1, NULL, print_message_function, (void*) message1);
     iret2 = pthread_create( &thread2, NULL, print_message_function, (void*) message2);

     /* Wait till threads are complete before main continues. Unless we  */
     /* wait we run the risk of executing an exit which will terminate   */
     /* the process and all threads before the threads have completed.   */

     pthread_join( thread1, NULL);
     pthread_join( thread2, NULL); 

     printf("Thread 1 returns: %d\n",iret1);
     printf("Thread 2 returns: %d\n",iret2);
     exit(0);
}

void *print_message_function( void *ptr )
{
     char *message;
     message = (char *) ptr;
     printf("%s \n", message);
}

 

Results:

Thread 1
Thread 2
Thread 1 returns: 0
Thread 2 returns: 0

Details:

  • In this example the same function is used in each thread. The arguments are different. The functions need not be the same.

     

  • Threads terminate by explicitly calling pthread_exit , by letting the function return, or by a call to the function exit which will terminate the process including any threads.

     

  • Function call: pthread_create
        int pthread_create(pthread_t * thread, 
                           const pthread_attr_t * attr,
                           void * (*start_routine)(void *), 
                           void *arg);
    
    Arguments:
    • thread - returns the thread id. (unsigned long int defined in bits/pthreadtypes.h)
    • attr - Set to NULL if default thread attributes are used. (else define members of the struct pthread_attr_t defined in bits/pthreadtypes.h) Attributes include:
      • detached state (joinable? Default: PTHREAD_CREATE_JOINABLE. Other option: PTHREAD_CREATE_DETACHED)
      • scheduling policy (real-time? PTHREAD_INHERIT_SCHED,PTHREAD_EXPLICIT_SCHED,SCHED_OTHER)
      • scheduling parameter
      • inheritsched attribute (Default: PTHREAD_EXPLICIT_SCHED Inherit from parent thread: PTHREAD_INHERIT_SCHED)
      • scope (Kernel threads: PTHREAD_SCOPE_SYSTEM User threads: PTHREAD_SCOPE_PROCESS Pick one or the other not both.)
      • guard size
      • stack address (See unistd.h and bits/posix_opt.h _POSIX_THREAD_ATTR_STACKADDR)
      • stack size (default minimum PTHREAD_STACK_SIZE set in pthread.h),
    • void * (*start_routine) - pointer to the function to be threaded. Function has a single argument: pointer to void.
    • *arg - pointer to argument of function. To pass multiple arguments, send a pointer to a structure.

     

  • Function call: pthread_exit
        void pthread_exit(void *retval);
        
    Arguments:
    • retval - Return value of thread.

    This routine kills the thread. The pthread_exit function never returns. If the thread is not detached, the thread id and return value may be examined from another thread by using pthread_join.
    Note: the return pointer *retval , must not be of local scope otherwise it would cease to exist once the thread terminates.

分享到:
评论

相关推荐

    ASN.1基本语法和编码规则

    1. **Ber(Basic Encoding Rules)**: 最基础的编码规则,用于大多数ASN.1实现。 2. **Der(Distinguished Encoding Rules)**: Ber的一个子集,更严格且唯一,常用于X.509证书和PKI。 3. **Per(Packed Encoding ...

    GB 9706.1-2020 医用电气设备 第1部分:基本安全和基本性能的通用要求.pdf

    GB 9706.1-2020 医用电气设备 第1部分:基本安全和基本性能的通用要求 最新版60601-1:2012 MOD

    路由跟踪命令.查看DNS、IP、Mac等

    1.最基本,最常用的,测试物理网络的 ping 192.168.0.8 -t ,参数-t是等待用户去中断测试 2.查看DNS、IP、Mac等 A.Win98:winipcfg B.Win2000以上:Ipconfig/all C.NSLOOKUP:如查看河北的DNS C:\&gt;...

    网络经典命令行 局域网经典命令

    最基本,最常用的,测试物理网络的 ping 192.168.10.88 -t ,参数-t是等待用户去中断测试 2.查看DNS、IP、Mac等 A.Win98:winipcfg B.Win2000以上:Ipconfig/all C.NSLOOKUP:如查看河北的DNS C:\...

    C程序基本算法.rar

    在C语言编程中,基本算法是程序设计的基础,它们涵盖了数据处理、问题解决的各种方法。在给定的“C程序基本算法.rar”压缩包中,包含的文档“C程序基本算法.doc”很可能是对这些算法的详细讲解。下面将根据标题和...

    ASN.1编码规则详解(最全最经典).pdf

    ### ASN.1编码规则详解 #### 1. ASN.1简介 ##### 1.1 ASN.1概述 ASN.1(Abstract Syntax Notation One)是一种国际标准,用于定义抽象数据类型的规格形式。它是由国际标准化组织(ISO)和国际电信联盟(ITU-T)...

    Ext.data.Store的基本用法

    这一过程是`Ext.data.Store`最基本的功能之一。 #### 四、数据排序 `Ext.data.Store`还支持对数据进行排序操作。可以通过设置`sortInfo`配置项来指定排序字段和排序方式。例如: ```javascript var store = new ...

    DBI-1.633.tar.gz

    在使用Percona Toolkit时,了解DBI的基本概念和用法是很有帮助的。DBI中的主要对象包括DBI(Driver Base Interface)、DBD(Database Driver)、$dbh(Database Handle)、$sth(Statement Handle)等。DBI允许...

    网络经典命令行

    1.最基本,最常用的,测试物理网络的 ping 192.168.0.8 -t ,参数-t是等待用户去中断测试 2.查看DNS、IP、Mac等 A.Win98:winipcfg B.Win2000以上:Ipconfig/all C.NSLOOKUP:如查看河北的DNS C ns....

    ASN.1 编码

    1. **基本类型**:ASN.1定义了一系列基本数据类型,如整数、实数、字符串、位串、对象标识符等。这些类型可以单独使用,也可以组合成更复杂的结构。 2. **定义结构**:通过使用asn.1的模块定义,可以创建复杂的数据...

    4.sql.server.2005.表的基本操作2 4.sql.server.2005.表的基本操作2

    查询数据是数据库操作中最常见的任务,使用`SELECT`语句实现。可以进行简单的查询,也可以使用`WHERE`子句进行条件筛选,甚至使用`GROUP BY`、`HAVING`、`ORDER BY`等子句进行更复杂的查询。 ```sql SELECT 列名1, ...

    1.操作系统实验1_0任务的基本管理1

    在 RT-Thread 操作系统中,任务管理是最基本也是最重要的组件之一。本实验旨在了解 RTOS 中任务管理的基本原理,掌握 RT-Thread 任务管理子系统中的任务创建、启动、延时机制,并了解任务的基本状态及其变迁过程。 ...

    DBI-1.616.tar.gz

    - `README`: 提供关于DBI的基本信息和使用说明。 要安装DBI,首先需要解压"DBI-1.616.tar.gz",然后进入解压后的目录并运行`perl Makefile.PL`,接着执行`make`和`make test`进行编译和测试,最后使用`make install...

    华为基本法.pdf

    "华为基本法" 华为基本法是华为公司的核心价值观和企业文化的集中体现。这份文件详细阐述了华为的企业精神、核心价值观、基本目标、成长领域、价值的分配等方面的内容。 一、企业精神 华为基本法强调企业精神的...

    08.拓薪教育-hibernate4.3的hibernate.cfg.xml基本配置.part1

    高级Hibernate4开发技术:ORM思想,hibernate介绍,hibernate.cfg.xml配置,hbm.xml映射文件详解,主键生成策略使用,PO对象状态及状态的转换分析、一级缓存,Hibernate数据检索技术,Hibernate高级映射技术,...

    ASN.1编码规则详解(最全最经典)

    - **基本编码规则(BER)**:BER是最常见的编码规则,它提供了数据转换的基本框架,适用于大多数情况下的数据传输。BER的灵活性和普遍适用性使其成为许多通信协议的首选编码方式。 - **规范编码规则(CER)**:CER是...

    05_Linux网络详解.zip

    2. 修改Linux的基本配置 **IP地址配置,最简单的一种 在命令运行 setup,带提示,按照提示修改即可 1.修改主机名 vi /etc/sysconfig/network NETWORKING=yes HOSTNAME=server1.itcast.cn 2.修改ip地址 vi /etc/...

    ASN.1PER编码方式以及测试程序

    "ASN.1编码规则详解(最全最经典).doc"文档提供了全面的ASN.1编码规则介绍,包括PER编码的详细细节。这份文档可能包含了编码规则的解释、编码过程的示例,以及可能遇到的问题和解决策略。通过阅读这份文档,开发者...

    ASN.1的简要说明.pdf

    ASN.1编码规则支持多种编码方式,其中BER(Basic Encoding Rules)和PER(Packed Encoding Rules)是最常用的两种。 基本概念: ASN.1作为一种数据描述语言,不依赖于具体的编程语言和硬件平台。它用于定义数据的...

Global site tag (gtag.js) - Google Analytics