搜索结果
找到约 49 项符合
wait 的查询结果
按分类筛选
操作系统开发 处理机调度
处理机调度,编写一个进程调度程序,允许多个进程共行的进程调度程序。
进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法。
每个进程有一个进程控制块(PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态 ...
网络 基于终端的订花系统_socket #include<stdio.h> #include<stdlib.h> #include<errno.h> #inclu
基于终端的订花系统_socket
#include<stdio.h>
#include<stdlib.h>
#include<errno.h>
#include<string.h>
#include<sys/types.h>
#include<netinet/in.h>
#include<sys/socket.h>
#include<sys/wait.h>
#include<sys/ipc.h>
#include<unistd.h>
#include<sys/shm.h>
#include<sys/stat.h>
#define MYPORT 3490 // ...
Java书籍 JavaServer Pages™ Specification This document is intended for: · Web Server and Application S
JavaServer Pages&#8482 Specification
This document is intended for:
· Web Server and Application Server vendors that want to provide JSP containers that
conform to the Tag Extensions specification.
· Web Authoring Tool vendors that want to generate JSP pages that conform to the Tag
Extensions spec ...
其他书籍 本书介绍了瑞萨FLASH 开发工具箱(FDT)的使用方法
本书介绍了瑞萨FLASH 开发工具箱(FDT)的使用方法,简要目录如下:
第1章简介
第2 章系统概要
第3 章FDT 的使用方法
第4章等待脚本(Wait For Script)
第5章存取权限(Access Rights)
第6 章用户界面的配置(Configuring the User Interface)
第7章菜单(Menus)
第8章窗口(Windows)
第9 章Simple Interface Mode (简 ...
数值算法/人工智能 北京大学ACM比赛题目 In 1742, Christian Goldbach, a German amateur mathematician, sent a letter to Leonhard
北京大学ACM比赛题目
In 1742, Christian Goldbach, a German amateur mathematician, sent a letter to Leonhard Euler in which he made the following conjecture:
Every even number greater than 4 can be
written as the sum of two odd prime numbers.
For example:
8 = 3 + 5. Both 3 and 5 are odd prime n ...
Linux/Unix编程 几个实用的Linux驱动模块
几个实用的Linux驱动模块,演示了模块的编写,wait/sleep, I/O空间的访问等。
matlab例程 Hospital queue is a regular met are very familiar with the phenomenon. It every day one way or anoth
Hospital queue is a regular met are very familiar with the phenomenon. It every day one way or another in the form in front of us. For example, patients to hospitals, pharmacies dispensing to patients, patients with transfusion to the infusion room, often need wait To some kind of service.
Linux/Unix编程 虚拟频谱分析仪的设计
虚拟频谱分析仪的设计,在linux下面安装qt3.3以上的版本才可以运行。
安装步骤如下:
Untar the tarball
Enter the directory QtDSO
call ./configure
call make and wait a few minutes
单片机开发 Description: This program demonstrates a half-duplex 9600-baud UART using // Timer_A3 using no XTAL
Description: This program demonstrates a half-duplex 9600-baud UART using
// Timer_A3 using no XTAL and an external resistor for DCO ROSC. DCO used for
// TACLK UART baud generation. The program will wait in LPM4, echoing back
// a received character using 8N1 protocol. On valid RX character, the
// ...
Java编程 在学习Java的多线程时
在学习Java的多线程时,对于其并发控制的实现,一直是初学者的难点。本实例中,详细的实现了Wait与notify的使用方法与技巧。对初学者具有比强的参考价值。