rpcsx/rpcs3/Emu/Cell/lv2/sys_trace.cpp
Lassi Hämäläinen c963c51a60 Remove unnecessary header includes
- Manually removed lot of unneeded #includes to clean code and reduce
  compilation time
- Reordered some of the #includes to be in more logical order
2019-06-25 17:11:10 +03:00

71 lines
1 KiB
C++

#include "stdafx.h"
#include "sys_trace.h"
#include "Emu/System.h"
#include "Emu/Cell/ErrorCodes.h"
LOG_CHANNEL(sys_trace);
s32 sys_trace_create()
{
sys_trace.todo("sys_trace_create()");
return CELL_OK;
}
s32 sys_trace_start()
{
sys_trace.todo("sys_trace_start()");
return CELL_OK;
}
s32 sys_trace_stop()
{
sys_trace.todo("sys_trace_stop()");
return CELL_OK;
}
s32 sys_trace_update_top_index()
{
sys_trace.todo("sys_trace_update_top_index()");
return CELL_OK;
}
s32 sys_trace_destroy()
{
sys_trace.todo("sys_trace_destroy()");
return CELL_OK;
}
s32 sys_trace_drain()
{
sys_trace.todo("sys_trace_drain()");
return CELL_OK;
}
s32 sys_trace_attach_process()
{
sys_trace.todo("sys_trace_attach_process()");
return CELL_OK;
}
s32 sys_trace_allocate_buffer()
{
sys_trace.todo("sys_trace_allocate_buffer()");
return CELL_OK;
}
s32 sys_trace_free_buffer()
{
sys_trace.todo("sys_trace_free_buffer()");
return CELL_OK;
}
s32 sys_trace_create2()
{
sys_trace.todo("sys_trace_create2()");
return CELL_OK;
}