代码搜索:Process
找到约 10,000 项符合「Process」的源代码
代码结果 10,000
www.eeworm.com/read/264563/11310158
h basic.h
#ifndef basic_h
#include
#include
#include
#define basic_h
char *errormsg[256];
//process control block
struct pcb
{
int pid; //process id
int ppid; //parent pro
www.eeworm.com/read/264473/11311888
c 11-1.c
#include
#include
#include
#include
main()
{
pid_t pid;
int status;
if(!(pid= fork()))
{
printf("Hi I am child
www.eeworm.com/read/264377/11317269
c semaph.c
/*
* Provide an simpler and easier to understand interface to the System V
* semaphore system calls. There are 7 routines available to the user:
*
* id = sem_create(key, initval); # create with i
www.eeworm.com/read/264377/11317580
c hello.c
#include "apue.h"
int
main(void)
{
printf("hello world from process ID %d\n", getpid());
exit(0);
}
www.eeworm.com/read/264377/11318228
6 fig1.6
#include "apue.h"
int
main(void)
{
printf("hello world from process ID %d\n", getpid());
exit(0);
}
www.eeworm.com/read/264194/11326069
vhd shift.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
entity shift is
port(cp,en,D,CT,c,k,x:in std_logic;
q3,q2,q1,q0:out std_logic);
end shift;
architecture HL of shift is
www.eeworm.com/read/264187/11326488
vhd schk.vhd
library ieee;
use ieee.std_logic_1164.all;
entity schk is
port(din,clk,clr: in std_logic;
F: out std_logic );
end schk;
architecture behave of schk is
signal Q: int
www.eeworm.com/read/409435/11327473
plg sd card.plg
礦ision3 Build Log
Project:
C:\SD CARD\SD CARD\SD CARD.uv2
Project File Date: 04/15/2008
Output:
Build target 'Target 1'
compiling sd.c...
UA
www.eeworm.com/read/263999/11333170
vhd clk1k.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity clk1k is
port
(clkin:in std_logic;
newclk1:out std_logic;
newclk2:out std_logic
);
end;
architecture