shim_vdso.h 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Copyright 2018 Intel Corporation.
  3. * Copyright 2018 Isaku Yamahata <isaku.yamahata at intel.com>
  4. * <isaku.yamahata at gmail.com>
  5. * All Rights Reserved.
  6. *
  7. * This file is part of Graphene Library OS.
  8. *
  9. * Graphene Library OS is free software: you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public License
  11. * as published by the Free Software Foundation, either version 3 of the
  12. * License, or (at your option) any later version.
  13. *
  14. * Graphene Library OS is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. */
  22. #ifndef _SHIM_VDSO_H_
  23. #define _SHIM_VDSO_H_
  24. extern const uint8_t vdso_so[];
  25. extern const size_t vdso_so_size;
  26. int vdso_map_migrate(void);
  27. #endif /* _SHIM_VDSO_H_ */