代码搜索:Process
找到约 10,000 项符合「Process」的源代码
代码结果 10,000
www.eeworm.com/read/177781/9432202
vhd arictl.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity arictl is
port(clk:in std_logic;
clkout:out std_logic;
ariend:out std_logic
);
end arictl;
archi
www.eeworm.com/read/373721/9441512
txt p1.txt
*** Image Format Transform Menu ***
1: rgb -> r & g & b
2: rgb -> rgb(pixel interleave)
3: rgb -> rgb(line interleave)
4: rgb -> bmp
5: r & g & b -> rgb
6: rgb(pixel interleave) ->
www.eeworm.com/read/373695/9442506
plg 11.1.plg
Build target 'Target 1'
compiling 11.1.c...
linking...
*** WARNING L16: UNCALLED SEGMENT, IGNORED FOR OVERLAY PROCESS
SEGMENT: ?PR?SEND?11_1
"11.1" - 0 Error(s), 1 Warning(s).
www.eeworm.com/read/373695/9442544
m51 14-1.m51
BL51 BANKED LINKER/LOCATER V4.20 09/02/2001 15:12:55 PAGE 1
BL51 BANKED LINKER/LOCATER V4.20, INVOKED BY:
C:\KEIL\C51\BIN\BL51.EXE 14-1.o
www.eeworm.com/read/373695/9442551
plg 14-1.plg
Build target 'Target 1'
compiling 14-1.c...
linking...
*** WARNING L16: UNCALLED SEGMENT, IGNORED FOR OVERLAY PROCESS
SEGMENT: ?PR?READDATA?14_1
*** WARNING L15: MULTIPLE CALL TO SEGMENT
SEGM
www.eeworm.com/read/373695/9442696
plg 10.1.plg
Build target 'Target 1'
compiling 10.1.c...
linking...
*** WARNING L16: UNCALLED SEGMENT, IGNORED FOR OVERLAY PROCESS
SEGMENT: ?PR?_DAQ?10_1
*** WARNING L10: CANNOT DETERMINE ROOT SEGMENT
"10.1"
www.eeworm.com/read/373676/9443781
txt 死锁检测.txt
实验四、 死锁检测算法的实现
实验目的:掌握银行家算法
实验目录: /home/b32/b32019/huangdongkai/experiment4
实验内容:假定某系统有10类资源,编程实现死锁的检测算法。
1) 分别读入5个进程的资源总需求,以及各个进程现占有的资源情况;
2) 生成系统可用资源向量;
3) 判断此状况下系统是否安全,如安全打印出安全序列。
...
www.eeworm.com/read/373657/9444546
vhd cnt1.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity cnt1 is
port(clk9,clr:in std_logic;
enn:in std_logic;
ccout:buffer std_logic;
qqout:buffer std
www.eeworm.com/read/177586/9446395
py pykill.py
import os
import win32process
import win32con
import win32api
def compare(x, y):
""" tries to fuzzy match process names """
if x.lower() == y.lower():
return True
y = '.'.join(y.s
www.eeworm.com/read/373386/9457921
c kill.c
#include
#include
#include
#include
main()
{
pid_t pid;
int status;
if(!(pid= fork())){
printf("I am child process!\n");
sleep(10);
return;
}
else{
printf(