2013-11-09 02:05:58 +01:00
|
|
|
#include "stdafx.h"
|
2018-07-27 22:07:34 +03:00
|
|
|
#include "Emu/Memory/vm.h"
|
2014-06-02 19:27:24 +02:00
|
|
|
#include "Emu/System.h"
|
2014-08-23 18:51:51 +04:00
|
|
|
|
2016-04-14 01:23:53 +03:00
|
|
|
#include "Emu/Cell/ErrorCodes.h"
|
2014-07-06 01:30:28 +02:00
|
|
|
#include "sys_trace.h"
|
2013-11-09 02:05:58 +01:00
|
|
|
|
2018-02-09 17:49:37 +03:00
|
|
|
|
2016-08-20 00:14:10 +03:00
|
|
|
|
2018-08-25 15:39:00 +03:00
|
|
|
LOG_CHANNEL(sys_trace);
|
2013-11-09 02:05:58 +01:00
|
|
|
|
2014-06-25 00:38:34 +02:00
|
|
|
s32 sys_trace_create()
|
2013-11-09 02:05:58 +01:00
|
|
|
{
|
2016-01-13 00:57:16 +03: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-13 00:57:16 +03: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-13 00:57:16 +03: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-13 00:57:16 +03: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-13 00:57:16 +03: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-13 00:57:16 +03: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-13 00:57:16 +03: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-13 00:57:16 +03: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-13 00:57:16 +03: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-13 00:57:16 +03:00
|
|
|
sys_trace.todo("sys_trace_create2()");
|
2013-11-09 02:05:58 +01:00
|
|
|
return CELL_OK;
|
|
|
|
|
}
|