虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

multi-Thread

  • Write a multithreaded Java, Pthreads, or WIN32 program that outputs prime numbers. This program shou

    Write a multithreaded Java, Pthreads, or WIN32 program that outputs prime numbers. This program should work as follows: The user will run the program and will enter a number on the command line. The program will then create a separate thread that outputs all the prime numbers less than or equal to the number entered by the user.

    标签: program multithreaded Pthreads numbers

    上传时间: 2013-12-21

    上传用户:zhyiroy

  • 详细的OFDM设计过程

    详细的OFDM设计过程,包括Matlab仿真、DSP源码及文档说明。 OFDM(正交频分复用)技术实际上是MCM(Multi-Carrier Modulation,多载波调制)的一种。

    标签: OFDM 过程

    上传时间: 2013-12-25

    上传用户:dianxin61

  • MATLAB Functions for Multiple View Geometry

    MATLAB Functions for Multiple View Geometry,对学习multi view有益

    标签: Functions Geometry Multiple MATLAB

    上传时间: 2013-12-30

    上传用户:希酱大魔王

  • fwknop stands for "Firewall Knock Operator" and is an upcoming piece of software that will be releas

    fwknop stands for "Firewall Knock Operator" and is an upcoming piece of software that will be released at the DEFCON 12 conference in July, 2004 in Las Vegas. fwknop implements network access controls (via iptables) based on a flexible port knocking mini-language, but with a twist it combines port knocking and passive operating system fingerprinting to make it possible to do things like only allow, say, Linux-2.4/2.6 systems to connect to your SSH daemon. fwknop supports shared, multi-protocol port knock sequences along with both relative and absolute timeouts, and coded port knock sequences encrypted with the Rijndael block cipher.

    标签: Firewall Operator software upcoming

    上传时间: 2016-12-04

    上传用户:牛津鞋

  • linux下的多线程调试工具

    linux下的多线程调试工具,支持posix NPTL, NPTL Trace Tool (PTT - POSIX Thread Trace Toolkit)

    标签: linux 多线程 调试工具

    上传时间: 2016-12-10

    上传用户:zhichenglu

  • 从C&C++过渡到Objective-C 对于已经熟悉C++的人来说

    从C&C++过渡到Objective-C 对于已经熟悉C++的人来说,从事iPhone开发一开始就陷入过多的Objective-C的细节可能并非好事。 我们希望可以更加关注于iPhone开发特有的东西,快速上手。 下面这些内容可以帮助C++程序员快速获得Objective-C的基本知识,并开始编写和阅读iPhone程序,如果在读别人的程序时,有些语法搞不懂,可以翻查我前面发的那本电子书《<Cocoa入门---使用Objective-C>英文版》(http://www.weiphone.com/thread-119791-1-1.html),把其作为参考手册用。 附件内容整理/翻译自《iPhone Open Application Development》(http://www.weiphone.com/thread-119662-1-1.html)

    标签: Objective-C

    上传时间: 2013-12-21

    上传用户:hwl453472107

  • 线程描述。主程序创建两个线程myThread1 和 myThread2

    线程描述。主程序创建两个线程myThread1 和 myThread2 ,每个线程打印一句话。使用pthread_create(&id,NULL,(void *) thread,NULL)完成。 先定义每个线程的执行体,然后在main中创建几个线程,最后主线程序等待子线程序结束后再退出。 2、创建两个线程,分别向线程传递如下两种类型的参数

    标签: myThread1 myThread2 线程 程序

    上传时间: 2016-12-14

    上传用户:米卡

  • 多机器人路径规划算法

    多机器人路径规划算法,The RVO Library provides an easy-to-use implementation of the Reciprocal Velocity Obstacle (RVO) framework for multi-agent simulation.

    标签: 多机器人 路径规划 算法

    上传时间: 2014-01-25

    上传用户:busterman

  • neural network utility is a Neural Networks library for the C++ Programmer. It is entirely object o

    neural network utility is a Neural Networks library for the C++ Programmer. It is entirely object oriented and focuses on reducing tedious and confusing problems of programming neural networks. By this I mean that network layers are easily defined. An entire multi-layer network can be created in a few lines, and trained with two functions. Layers can be connected to one another easily and painlessly.

    标签: Programmer Networks entirely network

    上传时间: 2013-12-24

    上传用户:liuchee

  • int main(int argc,char *argv[]) { char ch while(true) { printf("*************************

    int main(int argc,char *argv[]) { char ch while(true) { printf("*************************************\n") printf(" 1.Reader Priority\n") printf(" 2.Writer Priority\n") printf(" 3.Exit to Windows\n") printf("*************************************\n") printf("Enter your choice(1,2,3): ") do{ ch=(char)_getch() }while(ch!= 1 &&ch!= 2 &&ch!= 3 ) system("cls") if(ch== 3 ) return 0 else if(ch== 1 ) ReaderPriority("thread.dat") else WriterPriority("thread.dat") printf("\nPress Any Key to Coutinue:") _getch() system("cls") } return 0

    标签: char int printf while

    上传时间: 2017-01-06

    上传用户:gonuiln