mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
60 lines
1.1 KiB
C++
60 lines
1.1 KiB
C++
|
|
#include "stdafx.h"
|
||
|
|
|
||
|
|
#include "sys_trace.h"
|
||
|
|
|
||
|
|
#include "Emu/Cell/ErrorCodes.h"
|
||
|
|
|
||
|
|
LOG_CHANNEL(sys_trace);
|
||
|
|
|
||
|
|
// TODO: DEX/DECR mode support?
|
||
|
|
|
||
|
|
s32 sys_trace_create() {
|
||
|
|
sys_trace.todo("sys_trace_create()");
|
||
|
|
return CELL_ENOSYS;
|
||
|
|
}
|
||
|
|
|
||
|
|
s32 sys_trace_start() {
|
||
|
|
sys_trace.todo("sys_trace_start()");
|
||
|
|
return CELL_ENOSYS;
|
||
|
|
}
|
||
|
|
|
||
|
|
s32 sys_trace_stop() {
|
||
|
|
sys_trace.todo("sys_trace_stop()");
|
||
|
|
return CELL_ENOSYS;
|
||
|
|
}
|
||
|
|
|
||
|
|
s32 sys_trace_update_top_index() {
|
||
|
|
sys_trace.todo("sys_trace_update_top_index()");
|
||
|
|
return CELL_ENOSYS;
|
||
|
|
}
|
||
|
|
|
||
|
|
s32 sys_trace_destroy() {
|
||
|
|
sys_trace.todo("sys_trace_destroy()");
|
||
|
|
return CELL_ENOSYS;
|
||
|
|
}
|
||
|
|
|
||
|
|
s32 sys_trace_drain() {
|
||
|
|
sys_trace.todo("sys_trace_drain()");
|
||
|
|
return CELL_ENOSYS;
|
||
|
|
}
|
||
|
|
|
||
|
|
s32 sys_trace_attach_process() {
|
||
|
|
sys_trace.todo("sys_trace_attach_process()");
|
||
|
|
return CELL_ENOSYS;
|
||
|
|
}
|
||
|
|
|
||
|
|
s32 sys_trace_allocate_buffer() {
|
||
|
|
sys_trace.todo("sys_trace_allocate_buffer()");
|
||
|
|
return CELL_ENOSYS;
|
||
|
|
}
|
||
|
|
|
||
|
|
s32 sys_trace_free_buffer() {
|
||
|
|
sys_trace.todo("sys_trace_free_buffer()");
|
||
|
|
return CELL_ENOSYS;
|
||
|
|
}
|
||
|
|
|
||
|
|
s32 sys_trace_create2() {
|
||
|
|
sys_trace.todo("sys_trace_create2()");
|
||
|
|
return CELL_ENOSYS;
|
||
|
|
}
|