代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/290018/8512028
h queue.h
#ifndef _WDL_QUEUE_H_
#define _WDL_QUEUE_H_
#include "heapbuf.h"
class WDL_Queue
{
public:
WDL_Queue() : m_pos(0)
{
}
~WDL_Queue()
{
}
void Add(const void *buf, int le
www.eeworm.com/read/289731/8531733
h queue.h
#ifndef QUEUE_H
#define QUEUE_H
#include
using std::cerr;
using std::ostream;
#include
using std::exit;
// declaration of QueueItem
template class QueueIte
www.eeworm.com/read/289731/8531770
cpp queue.cpp
template
Queue::~Queue()
{
while ( ! is_empty() )
remove();
}
template
void Queue::add( const Type &val )
{
// allocate
www.eeworm.com/read/188512/8532338
h queue.h
// Fig. 21.16: Queue.h
// Template Queue class definition derived from class List.
#ifndef QUEUE_H
#define QUEUE_H
#include "List.h" // List class definition
template< typename QUEUETYPE >
c
www.eeworm.com/read/389240/8540220
h queue.h
/*
FreeRTOS.org V5.0.0 - Copyright (C) 2003-2008 Richard Barry.
This file is part of the FreeRTOS.org distribution.
FreeRTOS.org is free software; you can redistribute it and/or modify
it
www.eeworm.com/read/389240/8540289
c queue.c
/*
FreeRTOS.org V5.0.0 - Copyright (C) 2003-2008 Richard Barry.
This file is part of the FreeRTOS.org distribution.
FreeRTOS.org is free software; you can redistribute it and/or modify
it
www.eeworm.com/read/389240/8540310
o queue.o
www.eeworm.com/read/388968/8561120
h queue.h
typedef struct{
int ArrivalTime;
int Duration;
}QElemType;
//typedef int status;
typedef struct QNode{ //结点类型
QElemType data;
struct QNode *next;
}QNode,*QueuePtr;
typedef struct{
www.eeworm.com/read/188093/8572993
h queue.h
/*------------------------------------------------------------------------*/
/* */
/* QUEUE.H
www.eeworm.com/read/388784/8576846
h queue.h
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that