Projektarbeit Line Following Robot bei Prof. Chowanetz im WS22/23
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vcos_dlfcn.h 2.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. Copyright (c) 2012, Broadcom Europe Ltd
  3. All rights reserved.
  4. Redistribution and use in source and binary forms, with or without
  5. modification, are permitted provided that the following conditions are met:
  6. * Redistributions of source code must retain the above copyright
  7. notice, this list of conditions and the following disclaimer.
  8. * Redistributions in binary form must reproduce the above copyright
  9. notice, this list of conditions and the following disclaimer in the
  10. documentation and/or other materials provided with the distribution.
  11. * Neither the name of the copyright holder nor the
  12. names of its contributors may be used to endorse or promote products
  13. derived from this software without specific prior written permission.
  14. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  15. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  16. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  17. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
  18. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  19. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  20. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  21. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  22. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  23. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24. */
  25. /*=============================================================================
  26. VCOS - abstraction over dynamic library opening
  27. =============================================================================*/
  28. #ifndef VCOS_DLFCN_H
  29. #define VCOS_DLFCN_H
  30. #include "vcos_types.h"
  31. #include "pthreads/vcos_platform.h"
  32. #ifdef __cplusplus
  33. extern "C" {
  34. #endif
  35. /**
  36. * \file
  37. *
  38. * Loading dynamic libraries. See also dlfcn.h.
  39. */
  40. /** Open a dynamic library.
  41. *
  42. * @param name name of the library
  43. * @param mode Load lazily or immediately (VCOS_DL_LAZY, VCOS_DL_NOW, VCOS_DL_LOCAL, VCOS_DL_GLOBAL).
  44. *
  45. * @return A handle for use in subsequent calls.
  46. */
  47. VCOSPRE_ void * VCOSPOST_ vcos_dlopen(const char *name, int mode);
  48. /** Look up a symbol.
  49. *
  50. * @param handle Handle to open
  51. * @param name Name of function
  52. *
  53. * @return Function pointer, or NULL.
  54. */
  55. VCOSPRE_ void VCOSPOST_ (*vcos_dlsym(void *handle, const char *name))(void);
  56. /** Close a library
  57. *
  58. * @param handle Handle to close
  59. */
  60. VCOSPRE_ int VCOSPOST_ vcos_dlclose (void *handle);
  61. /** Return error message from library.
  62. *
  63. * @param err On return, set to non-zero if an error has occurred
  64. * @param buf Buffer to write error to
  65. * @param len Size of buffer (including terminating NUL).
  66. */
  67. VCOSPRE_ int VCOSPOST_ vcos_dlerror(int *err, char *buf, size_t buflen);
  68. #ifdef __cplusplus
  69. }
  70. #endif
  71. #endif