mirror of
https://github.com/nunuhara/xsystem4.git
synced 2026-09-22 23:18:01 +03:00
So far only basic debugging functionality is implemented (breakpoints, stepping, stack traces/variables). This is not tested against an established DAP client. My intention is to create a custom GUI frontend and extend the protocol to support xsystem4-specific features, such as inspecting the scene. (This work is underway.) Instruction references are hex-encoded address strings. Clients do not need to obtain them from DAP requests. This is outside the spec, but it is needed for a binary-only debugger. Functions that write directly to stdout (e.g. printf) should generally not be used any more. Instead, use either sys_message (which respects sys_silent) or log_message (which will send the message to the debugger if DAP is enabled). stderr can be used as normal.
46 lines
1.3 KiB
C
46 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2021 kichikuou <KichikuouChrome@gmail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
*/
|
|
|
|
#ifndef __MSGQUEUE_H__
|
|
#define __MSGQUEUE_H__
|
|
|
|
#include <stdbool.h>
|
|
#include <SDL_mutex.h>
|
|
|
|
struct msgq_elem;
|
|
|
|
struct msgq {
|
|
SDL_mutex *mutex;
|
|
SDL_cond *cond_nonempty;
|
|
struct msgq_elem *head;
|
|
struct msgq_elem *last;
|
|
};
|
|
|
|
static inline bool msgq_isempty(struct msgq *q) {
|
|
return !q->head;
|
|
}
|
|
|
|
struct msgq *msgq_new(void);
|
|
void msgq_free(struct msgq *q);
|
|
void msgq_enqueue(struct msgq *q, void *msg);
|
|
void *msgq_dequeue(struct msgq *q);
|
|
void *msgq_dequeue_timeout(struct msgq *q, uint32_t timeout_ms);
|
|
|
|
#endif // __MSGQUEUE_H__
|