2013-11-09 02:05:58 +01:00
|
|
|
#include "stdafx.h"
|
2014-06-02 19:27:24 +02:00
|
|
|
#include "Emu/Memory/Memory.h"
|
|
|
|
|
#include "Emu/System.h"
|
2013-11-09 02:05:58 +01:00
|
|
|
#include "Emu/SysCalls/SysCalls.h"
|
2014-08-23 16:51:51 +02:00
|
|
|
|
2014-07-06 01:30:28 +02:00
|
|
|
#include "sys_trace.h"
|
2013-11-09 02:05:58 +01:00
|
|
|
|
|
|
|
|
SysCallBase sys_trace("sys_trace");
|
|
|
|
|
|
2014-06-25 00:38:34 +02:00
|
|
|
s32 sys_trace_create()
|
2013-11-09 02:05:58 +01:00
|
|
|
{
|
2016-01-12 22:57:16 +01:00
|
|
|
sys_trace.todo("sys_trace_create()");
|
2013-11-09 02:05:58 +01:00
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-25 00:38:34 +02:00
|
|
|
s32 sys_trace_start()
|
2013-11-09 02:05:58 +01:00
|
|
|
{
|
2016-01-12 22:57:16 +01:00
|
|
|
sys_trace.todo("sys_trace_start()");
|
2013-11-09 02:05:58 +01:00
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-25 00:38:34 +02:00
|
|
|
s32 sys_trace_stop()
|
2013-11-09 02:05:58 +01:00
|
|
|
{
|
2016-01-12 22:57:16 +01:00
|
|
|
sys_trace.todo("sys_trace_stop()");
|
2013-11-09 02:05:58 +01:00
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-25 00:38:34 +02:00
|
|
|
s32 sys_trace_update_top_index()
|
2013-11-09 02:05:58 +01:00
|
|
|
{
|
2016-01-12 22:57:16 +01:00
|
|
|
sys_trace.todo("sys_trace_update_top_index()");
|
2013-11-09 02:05:58 +01:00
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-25 00:38:34 +02:00
|
|
|
s32 sys_trace_destroy()
|
2013-11-09 02:05:58 +01:00
|
|
|
{
|
2016-01-12 22:57:16 +01:00
|
|
|
sys_trace.todo("sys_trace_destroy()");
|
2013-11-09 02:05:58 +01:00
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-25 00:38:34 +02:00
|
|
|
s32 sys_trace_drain()
|
2013-11-09 02:05:58 +01:00
|
|
|
{
|
2016-01-12 22:57:16 +01:00
|
|
|
sys_trace.todo("sys_trace_drain()");
|
2013-11-09 02:05:58 +01:00
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-25 00:38:34 +02:00
|
|
|
s32 sys_trace_attach_process()
|
2013-11-09 02:05:58 +01:00
|
|
|
{
|
2016-01-12 22:57:16 +01:00
|
|
|
sys_trace.todo("sys_trace_attach_process()");
|
2013-11-09 02:05:58 +01:00
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-25 00:38:34 +02:00
|
|
|
s32 sys_trace_allocate_buffer()
|
2013-11-09 02:05:58 +01:00
|
|
|
{
|
2016-01-12 22:57:16 +01:00
|
|
|
sys_trace.todo("sys_trace_allocate_buffer()");
|
2013-11-09 02:05:58 +01:00
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-25 00:38:34 +02:00
|
|
|
s32 sys_trace_free_buffer()
|
2013-11-09 02:05:58 +01:00
|
|
|
{
|
2016-01-12 22:57:16 +01:00
|
|
|
sys_trace.todo("sys_trace_free_buffer()");
|
2013-11-09 02:05:58 +01:00
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-25 00:38:34 +02:00
|
|
|
s32 sys_trace_create2()
|
2013-11-09 02:05:58 +01:00
|
|
|
{
|
2016-01-12 22:57:16 +01:00
|
|
|
sys_trace.todo("sys_trace_create2()");
|
2013-11-09 02:05:58 +01:00
|
|
|
return CELL_OK;
|
|
|
|
|
}
|