代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/294801/8205163
c quc.c
/*************************************************************************/
/* */
/* Copyright (c) 1993-1998 Accelerated
www.eeworm.com/read/193517/8221079
cs batchqueueservice.cs
using System;
using System.Collections;
using System.Threading;
using System.Messaging;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Chann
www.eeworm.com/read/193517/8221089
cs batchqueue.cs
using System;
using System.Messaging;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;
using CSLA;
namespace CSLA.BatchQueue
{
///
/// Provid
www.eeworm.com/read/294317/8240734
cpp path.cpp
#define N 30
#include
typedef struct node{
int vno,weight;
node *next;
} edgeNode;
typedef edgeNode *graph[N];
typedef struct {
int bv,tv,t,pt;
} AST;
typedef AST Ast[N
www.eeworm.com/read/293914/8264059
h instructionqueue.h
/***************************************************************************
InstructionQueue.h - Instruction Queue
-------------------
beg
www.eeworm.com/read/370144/9615463
dpr p1451.dpr
{$A8,B-,C+,D+,E-,F-,G+,H+,I+,J-,K-,L+,M-,N+,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1}
{$MINSTACKSIZE $00004000}
{$MAXSTACKSIZE $00100000}
{$IMAGEBASE $00400000}
{$APPTYPE CONSOLE}
{$R+,Q+,S+}
Const
www.eeworm.com/read/370144/9615630
dpr p1452.dpr
{$A8,B-,C+,D+,E-,F-,G+,H+,I+,J-,K-,L+,M-,N+,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1}
{$MINSTACKSIZE $00004000}
{$MAXSTACKSIZE $00100000}
{$IMAGEBASE $00400000}
{$APPTYPE GUI}
{ $R+,Q+,S+}
Const
www.eeworm.com/read/370144/9615682
dpr p213.dpr
{$A8,B-,C+,D+,E-,F-,G+,H+,I+,J-,K-,L+,M-,N+,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1}
{$MINSTACKSIZE $00004000}
{$MAXSTACKSIZE $00100000}
{$IMAGEBASE $00400000}
{$APPTYPE GUI}
{$R+,Q+,S+}
Const
www.eeworm.com/read/370144/9615689
dpr p145.dpr
{$A8,B-,C+,D+,E-,F-,G+,H+,I+,J-,K-,L+,M-,N+,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1}
{$MINSTACKSIZE $00004000}
{$MAXSTACKSIZE $00100000}
{$IMAGEBASE $00400000}
{$APPTYPE GUI}
{$R+,Q+,S+}
Const
www.eeworm.com/read/369540/9641208
txt 消息队列.txt
消息队列
消息队列(也叫做报文队列)能够克服早期unix通信机制的一些缺点。作为早期unix通信机制之一的信号能够传送的信息量有限,后来虽然POSIX 1003.1b在信号的实时性方面作了拓广,使得信号在传递信息量方面有了相当程度的改进,但是信号这种通信方式更像"即时"的通信方式,它要求接受信号的进程在某个时间范围内对信号做出反应,因此该信号最多在接受信号进程的生命周期内才有意义,信号所传递的信 ...