PageRenderTime 36ms CodeModel.GetById 11ms RepoModel.GetById 0ms app.codeStats 0ms

/alsa-lib/include/error.h

https://github.com/kularny/android_device_motorola_omap4-common
C Header | 85 lines | 27 code | 13 blank | 45 comment | 3 complexity | c0f36e2b96a11f54990caa045b5d1be0 MD5 | raw file
Possible License(s): LGPL-2.1, GPL-2.0
  1. /**
  2. * \file include/error.h
  3. * \brief Application interface library for the ALSA driver
  4. * \author Jaroslav Kysela <perex@perex.cz>
  5. * \author Abramo Bagnara <abramo@alsa-project.org>
  6. * \author Takashi Iwai <tiwai@suse.de>
  7. * \date 1998-2001
  8. *
  9. * Application interface library for the ALSA driver
  10. */
  11. /*
  12. * This library is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU Lesser General Public License as
  14. * published by the Free Software Foundation; either version 2.1 of
  15. * the License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU Lesser General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Lesser General Public
  23. * License along with this library; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  25. *
  26. */
  27. #ifndef __ALSA_ERROR_H
  28. #define __ALSA_ERROR_H
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32. /**
  33. * \defgroup Error Error handling
  34. * Error handling macros and functions.
  35. * \{
  36. */
  37. #define SND_ERROR_BEGIN 500000 /**< Lower boundary of sound error codes. */
  38. #define SND_ERROR_INCOMPATIBLE_VERSION (SND_ERROR_BEGIN+0) /**< Kernel/library protocols are not compatible. */
  39. #define SND_ERROR_ALISP_NIL (SND_ERROR_BEGIN+1) /**< Lisp encountered an error during acall. */
  40. const char *snd_strerror(int errnum);
  41. /**
  42. * \brief Error handler callback.
  43. * \param file Source file name.
  44. * \param line Line number.
  45. * \param function Function name.
  46. * \param err Value of \c errno, or 0 if not relevant.
  47. * \param fmt \c printf(3) format.
  48. * \param ... \c printf(3) arguments.
  49. *
  50. * A function of this type is called by the ALSA library when an error occurs.
  51. * This function usually shows the message on the screen, and/or logs it.
  52. */
  53. typedef void (*snd_lib_error_handler_t)(const char *file, int line, const char *function, int err, const char *fmt, ...) /* __attribute__ ((format (printf, 5, 6))) */;
  54. extern snd_lib_error_handler_t snd_lib_error;
  55. extern int snd_lib_error_set_handler(snd_lib_error_handler_t handler);
  56. #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 95)
  57. #define SNDERR(...) snd_lib_error(__FILE__, __LINE__, __FUNCTION__, 0, __VA_ARGS__) /**< Shows a sound error message. */
  58. #define SYSERR(...) snd_lib_error(__FILE__, __LINE__, __FUNCTION__, errno, __VA_ARGS__) /**< Shows a system error message (related to \c errno). */
  59. #else
  60. #define SNDERR(args...) snd_lib_error(__FILE__, __LINE__, __FUNCTION__, 0, ##args) /**< Shows a sound error message. */
  61. #define SYSERR(args...) snd_lib_error(__FILE__, __LINE__, __FUNCTION__, errno, ##args) /**< Shows a system error message (related to \c errno). */
  62. #endif
  63. /** \} */
  64. #ifdef __cplusplus
  65. }
  66. #endif
  67. /** Local error handler function type */
  68. typedef void (*snd_local_error_handler_t)(const char *file, int line,
  69. const char *func, int err,
  70. const char *fmt, va_list arg);
  71. snd_local_error_handler_t snd_lib_error_set_local(snd_local_error_handler_t func);
  72. #endif /* __ALSA_ERROR_H */