代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/454938/7381180
cpp queue.cpp
template
Queue::~Queue()
{
while ( ! is_empty() )
remove();
}
template
void Queue::add( const Type &val )
{
// allocate
www.eeworm.com/read/453813/7410056
h queue.h
//////////////////////////////////////////////////////////////
// queue.h
// reference of queue functions
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
void add_node_to(void **head,
www.eeworm.com/read/453813/7410057
c queue.c
#include
#include "queue.h"
struct basic_nod_t {
struct basic_nod_t *prev;
struct basic_nod_t *next;
};
void add_node_to(void **head, void **tail, void *node, void *to, int befo
www.eeworm.com/read/452756/7433293
class queue.class
www.eeworm.com/read/452710/7435285
c queue.c
/* queue.c - dequeue, enqueue */
#include
#include
#include
/*------------------------------------------------------------------------
* enqueue -- insert an item
www.eeworm.com/read/450669/7478527
h queue.h
#ifndef QUEUE_H_
#define QUEUE_H_
#include"Node.h"
template
class Queue{
public:
Queue();
bool empty()const;
Error_code append(const Queue_entry &item);
Error_code se
www.eeworm.com/read/449830/7495963
c queue.c
/*
FreeRTOS.org V5.1.1 - 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/449830/7495991
o queue.o
www.eeworm.com/read/449830/7496028
h queue.h
/*
FreeRTOS.org V5.1.1 - 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/449530/7501288
h queue.h
/* queue.h -- interface for a queue */
#ifndef _QUEUE_H_
#define _QUEUE_H_
#include
/* INSERT ITEM TYPE HERE */
/* FOR EXAMPLE, */
/* use the following for use_q.c */
/* typedef i