Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. system/core/libion/include/ion/ion.h:34:35: error: unknown type name 'ion_user_handle_t'
  2. unsigned int flags, ion_user_handle_t *handle);
  3. ^
  4. system/core/libion/include/ion/ion.h:38:22: error: unknown type name 'ion_user_handle_t'
  5. int ion_free(int fd, ion_user_handle_t handle);
  6. ^
  7. system/core/libion/include/ion/ion.h:39:21: error: unknown type name 'ion_user_handle_t'
  8. int ion_map(int fd, ion_user_handle_t handle, size_t length, int prot,
  9. ^
  10. system/core/libion/include/ion/ion.h:41:23: error: unknown type name 'ion_user_handle_t'
  11. int ion_share(int fd, ion_user_handle_t handle, int *share_fd);
  12. ^
  13. system/core/libion/include/ion/ion.h:42:38: error: unknown type name 'ion_user_handle_t'
  14. int ion_import(int fd, int share_fd, ion_user_handle_t *handle);
  15. ^
  16. system/core/libion/ion.c:61:35: error: unknown type name 'ion_user_handle_t'
  17. unsigned int flags, ion_user_handle_t *handle)
  18. ^
  19. system/core/libion/ion.c:81:22: error: unknown type name 'ion_user_handle_t'
  20. int ion_free(int fd, ion_user_handle_t handle)
  21. ^
  22. system/core/libion/ion.c:89:21: error: unknown type name 'ion_user_handle_t'
  23. int ion_map(int fd, ion_user_handle_t handle, size_t length, int prot,
  24. ^
  25. system/core/libion/ion.c:118:23: error: unknown type name 'ion_user_handle_t'
  26. int ion_share(int fd, ion_user_handle_t handle, int *share_fd)
  27. ^
  28. system/core/libion/ion.c: In function 'ion_alloc_fd':
  29. system/core/libion/ion.c:142:5: error: unknown type name 'ion_user_handle_t'
  30. ion_user_handle_t handle;
  31. ^
  32. system/core/libion/ion.c:145:5: error: implicit declaration of function 'ion_alloc' [-Werror=implicit-function-declaration]
  33. ret = ion_alloc(fd, len, align, heap_mask, flags, &handle);
  34. ^
  35. system/core/libion/ion.c:148:5: error: implicit declaration of function 'ion_share' [-Werror=implicit-function-declaration]
  36. ret = ion_share(fd, handle, handle_fd);
  37. ^
  38. system/core/libion/ion.c:149:5: error: implicit declaration of function 'ion_free' [-Werror=implicit-function-declaration]
  39. ion_free(fd, handle);
  40. ^
  41. system/core/libion/ion.c: At top level:
  42. system/core/libion/ion.c:153:38: error: unknown type name 'ion_user_handle_t'
  43. int ion_import(int fd, int share_fd, ion_user_handle_t *handle)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement