espidf_thread.c 315 B

1234567891011121314
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #include "platform_api_vmcore.h"
  6. #include "platform_api_extension.h"
  7. uint8 *
  8. os_thread_get_stack_boundary()
  9. {
  10. /* TODO: implement os_thread_get_stack_boundary */
  11. return NULL;
  12. }