📄 roundrobinresourcequeuec.nc
字号:
/*
* "Copyright (c) 2005 Washington University in St. Louis.
* All rights reserved.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose, without fee, and without written agreement is
* hereby granted, provided that the above copyright notice, the following
* two paragraphs and the author appear in all copies of this software.
*
* IN NO EVENT SHALL WASHINGTON UNIVERSITY IN ST. LOUIS BE LIABLE TO ANY PARTY
* FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING
* OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF WASHINGTON
* UNIVERSITY IN ST. LOUIS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* WASHINGTON UNIVERSITY IN ST. LOUIS SPECIFICALLY DISCLAIMS ANY WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
* ON AN "AS IS" BASIS, AND WASHINGTON UNIVERSITY IN ST. LOUIS HAS NO
* OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
* MODIFICATIONS."
*/
/**
*
* @author Kevin Klues (klueska@cs.wustl.edu)
* @version $Revision: 1.6 $
* @date $Date: 2008/06/26 04:39:15 $
*/
#include "Resource.h"
generic module RoundRobinResourceQueueC(uint8_t size) @safe() {
provides {
interface Init;
interface ResourceQueue as RoundRobinQueue;
}
}
implementation {
enum {
NO_ENTRY = 0xFF,
SIZE = size ? (size - 1) / 8 + 1 : 0
};
uint8_t resQ[SIZE];
uint8_t last = 0;
void clearEntry(uint8_t id) {
resQ[id / 8] &= ~(1 << (id % 8));
}
command error_t Init.init() {
memset(resQ, 0, sizeof(resQ));
return SUCCESS;
}
async command bool RoundRobinQueue.isEmpty() {
int i;
atomic {
for (i = 0; i<sizeof(resQ); i++)
if(resQ[i] > 0) return FALSE;
return TRUE;
}
}
async command bool RoundRobinQueue.isEnqueued(resource_client_id_t id) {
return resQ[id / 8] & (1 << (id % 8));
}
async command resource_client_id_t RoundRobinQueue.dequeue() {
int i;
atomic {
for (i = last+1; ; i++) {
if(i == size)
i = 0;
if (call RoundRobinQueue.isEnqueued(i)) {
clearEntry(i);
last = i;
return i;
}
if (i == last)
break;
}
return NO_ENTRY;
}
}
async command error_t RoundRobinQueue.enqueue(resource_client_id_t id) {
atomic {
if (!(call RoundRobinQueue.isEnqueued(id))) {
resQ[id / 8] |= 1 << (id % 8);
return SUCCESS;
}
return EBUSY;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -