db_ipc.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* -*- mode:c; c-file-style:"k&r"; c-basic-offset: 4; tab-width:4; indent-tabs-mode:nil; mode:auto-fill; fill-column:78; -*- */
  2. /* vim: set ts=4 sw=4 et tw=78 fo=cqt wm=0: */
  3. /* Copyright (C) 2014 Stony Brook University
  4. This file is part of Graphene Library OS.
  5. Graphene Library OS is free software: you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public License
  7. as published by the Free Software Foundation, either version 3 of the
  8. License, or (at your option) any later version.
  9. Graphene Library OS is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  15. /*
  16. * db_ipc.c
  17. *
  18. * This file contains APIs for physical memory bulk copy across processes.
  19. */
  20. #include "pal_defs.h"
  21. #include "pal_linux_defs.h"
  22. #include "pal.h"
  23. #include "pal_internal.h"
  24. #include "pal_error.h"
  25. int gipc_open (PAL_HANDLE * handle, const char * type, const char * uri,
  26. int access, int share, int create, int options)
  27. {
  28. return -PAL_ERROR_NOTIMPLEMENTED;
  29. }
  30. int gipc_close (PAL_HANDLE handle)
  31. {
  32. return -PAL_ERROR_NOTIMPLEMENTED;
  33. }
  34. const char * gipc_getrealpath (PAL_HANDLE handle)
  35. {
  36. return NULL;
  37. }
  38. struct handle_ops gipc_ops = {
  39. .getrealpath = &gipc_getrealpath,
  40. .open = &gipc_open,
  41. .close = &gipc_close,
  42. };
  43. int _DkCreatePhysicalMemoryChannel (PAL_HANDLE * handle, unsigned long * key)
  44. {
  45. return -PAL_ERROR_NOTIMPLEMENTED;
  46. }
  47. int _DkPhysicalMemoryCommit (PAL_HANDLE channel, int entries,
  48. PAL_PTR * addrs, PAL_NUM * sizes, int flags)
  49. {
  50. return -PAL_ERROR_NOTIMPLEMENTED;
  51. }
  52. int _DkPhysicalMemoryMap (PAL_HANDLE channel, int entries,
  53. PAL_PTR * addrs, PAL_NUM * sizes, PAL_FLG * prots)
  54. {
  55. return -PAL_ERROR_NOTIMPLEMENTED;
  56. }