/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * ALSA sequencer Priority Queue * Copyright (c) 1998 by Frank van de Pol <fvdpol@coil.demon.nl>
*/ #ifndef __SND_SEQ_PRIOQ_H #define __SND_SEQ_PRIOQ_H
#include"seq_memory.h"
/* === PRIOQ === */
struct snd_seq_prioq { struct snd_seq_event_cell *head; /* pointer to head of prioq */ struct snd_seq_event_cell *tail; /* pointer to tail of prioq */ int cells;
spinlock_t lock;
};
/* create new prioq (constructor) */ struct snd_seq_prioq *snd_seq_prioq_new(void);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.