mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-07 09:10:00 +01:00
make precompiled header slimmer under Linux to increase CI and dev-machine build-times make sure unused modules don't compile add unused modules to the VS project to easier keep track of them
68 lines
1.3 KiB
C++
68 lines
1.3 KiB
C++
#include "stdafx.h"
|
|
#include "Emu/ConLog.h"
|
|
#include "Emu/Memory/Memory.h"
|
|
#include "Emu/System.h"
|
|
#include "Emu/SysCalls/SysCalls.h"
|
|
|
|
SysCallBase sys_trace("sys_trace");
|
|
|
|
int sys_trace_create()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_create()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_start()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_start()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_stop()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_stop()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_update_top_index()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_update_top_index()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_destroy()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_destroy()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_drain()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_drain()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_attach_process()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_attach_process()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_allocate_buffer()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_allocate_buffer()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_free_buffer()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_free_buffer()");
|
|
return CELL_OK;
|
|
}
|
|
|
|
int sys_trace_create2()
|
|
{
|
|
sys_trace.Warning("Unimplemented function: sys_trace_create2()");
|
|
return CELL_OK;
|
|
}
|