代码搜索:Process
找到约 10,000 项符合「Process」的源代码
代码结果 10,000
www.eeworm.com/read/435023/7799024
c pipe.c
#include
#include
#include
#include
int main(int argc, char *argv[])
{
int pfd[2];
int rtn, rtn_1, flag;
pid_t pid, pid_1;
long v;
ssize_t nread;
char
www.eeworm.com/read/434781/7802091
java stringmixerprocessor.java
// interfaces/interfaceprocessor/StringMixerProcessor.java
// TIJ4 Chapter Interfaces, Exercise 11, page 324
/* Create a class with a method that takes a String argument and produces a result
* tha
www.eeworm.com/read/289562/7805487
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/289562/7805672
c hello.c
#include "apue.h"
int
main(void)
{
printf("hello world from process ID %d\n", getpid());
exit(0);
}
www.eeworm.com/read/289562/7806015
6 fig1.6
#include "apue.h"
int
main(void)
{
printf("hello world from process ID %d\n", getpid());
exit(0);
}
www.eeworm.com/read/199930/7814337
h common.h
#include
#include
#include
#include
#include
#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
#define INFEASIBLE -1
#defi
www.eeworm.com/read/199926/7814420
vhd bit_synchronous.vhd
--PLL 2006.12.17
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_unsigned.all;
entity bit_synchronous is
port (
www.eeworm.com/read/299985/7815732
plg tw103.omf.plg
礦ision3 Build Log
Project:
D:\Terawins_project\TW103-8_0.33b_tvboard\T103.uv2
Project File Date: 10/17/2006
Output:
Build target 'Target 1'
c
www.eeworm.com/read/399939/7820865
cs devise.cs
using System;
using System.Collections;
using System.Text;
using System.Windows.Forms;
using System.Drawing;
namespace os
{
public class devise : jincheng
{
public int numb
www.eeworm.com/read/399935/7821202
vhd latchinf.vhd
-- MAX+plus II VHDL Example
-- Latch Inference
-- Copyright (c) 1994 Altera Corporation
ENTITY latchinf IS
PORT
(
enable, data : IN BIT;
q : OUT BIT
);
END latchinf;
ARCHITECTU