pthread_condattr_init.c 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * pthread_condattr_init.c
  3. *
  4. * Description:
  5. * This translation unit implements condition variables and their primitives.
  6. *
  7. *
  8. * --------------------------------------------------------------------------
  9. *
  10. * Pthreads-embedded (PTE) - POSIX Threads Library for embedded systems
  11. * Copyright(C) 2008 Jason Schmidlapp
  12. *
  13. * Contact Email: jschmidlapp@users.sourceforge.net
  14. *
  15. *
  16. * Based upon Pthreads-win32 - POSIX Threads Library for Win32
  17. * Copyright(C) 1998 John E. Bossom
  18. * Copyright(C) 1999,2005 Pthreads-win32 contributors
  19. *
  20. * Contact Email: rpj@callisto.canberra.edu.au
  21. *
  22. * The original list of contributors to the Pthreads-win32 project
  23. * is contained in the file CONTRIBUTORS.ptw32 included with the
  24. * source code distribution. The list can also be seen at the
  25. * following World Wide Web location:
  26. * http://sources.redhat.com/pthreads-win32/contributors.html
  27. *
  28. * This library is free software; you can redistribute it and/or
  29. * modify it under the terms of the GNU Lesser General Public
  30. * License as published by the Free Software Foundation; either
  31. * version 2 of the License, or (at your option) any later version.
  32. *
  33. * This library is distributed in the hope that it will be useful,
  34. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  35. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  36. * Lesser General Public License for more details.
  37. *
  38. * You should have received a copy of the GNU Lesser General Public
  39. * License along with this library in the file COPYING.LIB;
  40. * if not, write to the Free Software Foundation, Inc.,
  41. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  42. */
  43. #include <stdlib.h>
  44. #include "pthread.h"
  45. #include "implement.h"
  46. int
  47. pthread_condattr_init (pthread_condattr_t * attr)
  48. /*
  49. * ------------------------------------------------------
  50. * DOCPUBLIC
  51. * Initializes a condition variable attributes object
  52. * with default attributes.
  53. *
  54. * PARAMETERS
  55. * attr
  56. * pointer to an instance of pthread_condattr_t
  57. *
  58. *
  59. * DESCRIPTION
  60. * Initializes a condition variable attributes object
  61. * with default attributes.
  62. *
  63. * NOTES:
  64. * 1) Use to define condition variable types
  65. * 2) It is up to the application to ensure
  66. * that it doesn't re-init an attribute
  67. * without destroying it first. Otherwise
  68. * a memory leak is created.
  69. *
  70. * RESULTS
  71. * 0 successfully initialized attr,
  72. * ENOMEM insufficient memory for attr.
  73. *
  74. * ------------------------------------------------------
  75. */
  76. {
  77. pthread_condattr_t attr_result;
  78. int result = 0;
  79. attr_result = (pthread_condattr_t) calloc (1, sizeof (*attr_result));
  80. if (attr_result == NULL)
  81. {
  82. result = ENOMEM;
  83. }
  84. *attr = attr_result;
  85. return result;
  86. } /* pthread_condattr_init */