You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
419 B
24 lines
419 B
|
5 months ago
|
/*
|
||
|
|
* Copyright (c) 2006-2024 RT-Thread Development Team
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*
|
||
|
|
* Change Logs:
|
||
|
|
* Date Author Notes
|
||
|
|
* 2024-07-04 rcitach init ver.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <rtthread.h>
|
||
|
|
#include <lwp_user_mm.h>
|
||
|
|
#include "vdso.h"
|
||
|
|
|
||
|
|
rt_weak int arch_setup_additional_pages(struct rt_lwp *lwp)
|
||
|
|
{
|
||
|
|
return -RT_ERROR;
|
||
|
|
}
|
||
|
|
|
||
|
|
rt_weak void rt_vdso_update_glob_time(void)
|
||
|
|
{
|
||
|
|
return ;
|
||
|
|
}
|