zoukankan      html  css  js  c++  java
  • linux 多线程基础

    参考出处:http://www.cnblogs.com/skynet/archive/2010/10/30/1865267.html

    1、进程与线程

        进程是程序代码在系统中的具体实现。进程是拥有所需资源和执行方案的集合。

        线程是进程中划分出的可独立执行的一个控制流程。

        两者区别:

            每个进程有各自独立的地址空间。进程崩溃不会影响到其他进程。

            所有线程共享同一进程的资源,除了局部变量和堆之外。线程的崩溃会导致所在进程的挂起。

    #include <stdio.h>
    #include <stdlib.h>
    #include <pthread.h>
    #include <errno.h>
    #include <unistd.h>
    
    int g_Flag = 0;
     
    void* thread1( void* );
    void* thread2( void* );
    
    int main( int argc, char* argv[] )
    {
        printf(" Enter main
     ");
    
        pthread_t tid1, tid2;
        int rc1 = 0;
        int rc2 = 0;
    
        rc2 = pthread_create( &tid2, NULL, thread2, NULL );
        if ( 0 != rc2 )
        {
            printf("%s: %d
    ", __func__, strerror(rc2) );
        }
    
        rc1 = pthread_create( &tid1, NULL, thread1, NULL );
        if ( 0 != rc1 )
        {
            printf( "%s: %d
    ", __func__, strerror( rc1 ) );
        }
        printf( "leave main
    " );
    
    
        getchar();
    
        exit( 0 );
    }
    
    void* thread1( void* arg )
    {    
        printf( "Enter thread1
    " );
        printf( "This is thread1, g_Flag : %d, thread id is %u
    ", g_Flag, ( unsigned int )pthread_self()  );
        g_Flag = 1; 
        printf( "This is thread1, g_Flag : %d, thread_id is %u
    ", g_Flag, ( unsigned int )pthread_self()  );
        printf( "leave thread
    " );
        pthread_exit( 0 );
    }
    
    void* thread2( void* arg )
    {
        printf( "Enter thread2
    " );
        printf( "This is thread2, g_Flag : %d, thread_id is %u
    ", g_Flag, (unsigned int )pthread_self() );
        g_Flag = 2; 
        printf( "This is thread2, g_Flag :%d, thread_id is %u
    ", g_Flag, (unsigned int )pthread_self() );
        pthread_exit( 0 );
    }
  • 相关阅读:
    第四章 使用jQuery操作DOM
    第三章 jQuery中的事件与动画
    第二章 jQuery选择器
    第一章 jQuery基础
    第五章 JavaScript对象及初识面向对象
    第四章 JavaScript操作DOM对象
    第三章 JavaScript操作BOM对象
    第二章 JavaScript核心语法
    第一章 Javascript基础
    第九章 MySQL中LIMIT和NOT IN案例
  • 原文地址:https://www.cnblogs.com/bracken/p/3141649.html
Copyright © 2011-2022 走看看