代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/30239/1016643
h queue.h
/*
FreeRTOS V3.2.4 - Copyright (C) 2003-2005 Richard Barry.
This file is part of the FreeRTOS distribution.
FreeRTOS is free software; you can redistribute it and/or modify
it under the te
www.eeworm.com/read/34887/1049617
c queue.c
/*
FreeRTOS V3.2.4 - Copyright (C) 2003-2005 Richard Barry.
This file is part of the FreeRTOS distribution.
FreeRTOS is free software; you can redistribute it and/or modify
it under the te
www.eeworm.com/read/34887/1049620
h queue.h
/*
FreeRTOS V3.2.4 - Copyright (C) 2003-2005 Richard Barry.
This file is part of the FreeRTOS distribution.
FreeRTOS is free software; you can redistribute it and/or modify
it under the te
www.eeworm.com/read/35194/1053422
c queue.c
/**
*******************************************************************************
* @file queue.c
* @version V1.13
* @date 2010.04.26
* @brief Queue management impl
www.eeworm.com/read/35194/1053565
c queue.c
/**
*******************************************************************************
* @file queue.c
* @version V1.13
* @date 2010.04.26
* @brief Queue management impl
www.eeworm.com/read/35194/1053614
o queue.o
www.eeworm.com/read/35194/1053619
crf queue.crf
www.eeworm.com/read/35194/1053625
d queue.d
.\Obj\queue.o: ..\CoOS\kernel\queue.c
.\Obj\queue.o: ..\CoOS\kernel\coocox.h
.\Obj\queue.o: ..\CoOS\kernel\CoOS.h
.\Obj\queue.o: ..\CoOS\kernel\OsConfig.h
.\Obj\queue.o: ..\CoOS\portable\OsArch.h
www.eeworm.com/read/35567/1059382
c queue.c
#include
#define Max 100
void SetNull(front, rear)
int *front, *rear;
{
*front = 0;
*rear = 0;
}
int Empty(front,rear)
int *front, *rear;
{
if(*front == *rear)
return(1)
www.eeworm.com/read/494460/1160021
h queue.h
#include
using namespace std;
class queue
{
public:
queue(void);
~queue(void);
friend istream& operator>>(istream& in,queue& l);
friend ostream& operator