~ubuntu-branches/ubuntu/trusty/sblim-sfcb/trusty-proposed

« back to all changes in this revision

Viewing changes to brokerOs.c

  • Committer: Bazaar Package Importer
  • Author(s): Thierry Carrez
  • Date: 2009-06-08 12:04:49 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090608120449-byfplk09rqz8rtg6
Tags: 1.3.3-0ubuntu1
* New upstream release.
* debian/rules: Removed rpath hacks, SFCB default build handles that now.
* Removed 1934753-remove-assignment.diff, now upstream.
* Refreshed patch cim-schema-location.diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
{
134
134
#if defined(CMPI_PLATFORM_LINUX_GENERIC_GNU)
135
135
   static pthread_mutex_t tmpl = PTHREAD_MUTEX_INITIALIZER;
136
 
   pthread_mutex_t *m = calloc(1, sizeof(pthread_mutex_t));
 
136
   int state = 0;
 
137
   pthread_mutex_t *m = memAlloc(MEM_TRACKED, sizeof(pthread_mutex_t), &state);
137
138
   *m = tmpl;
138
139
   return m;
139
140
#else