vdso_weak.c 407 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) 2006-2024 RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2024-07-04 rcitach init ver.
  9. */
  10. #include <rtthread.h>
  11. #include <lwp_user_mm.h>
  12. #include "vdso.h"
  13. rt_weak int arch_setup_additional_pages(struct rt_lwp *lwp)
  14. {
  15. return -RT_ERROR;
  16. }
  17. rt_weak void rt_vdso_update_glob_time(void)
  18. {
  19. }