mirror of
https://github.com/tiennm99/HDH.git
synced 2026-06-08 22:14:23 +00:00
11 lines
235 B
C
11 lines
235 B
C
#ifndef QUEUE_H
|
|
#define QUEUE_H
|
|
|
|
#include "structs.h"
|
|
|
|
void initialize_queue(struct pqueue_t *q);
|
|
struct pcb_t *de_queue(struct pqueue_t *q);
|
|
void en_queue(struct pqueue_t *q, struct pcb_t *proc);
|
|
int empty(struct pqueue_t *q);
|
|
|
|
#endif |