~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/blenlib/intern/threads.c

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2007-05-17 11:47:59 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517114759-yp4ybrnhp2u7pk66
Tags: 2.44-1
* New upstream release.
* Drop debian/patches/01_64bits_stupidity, not needed anymore: as of this
  version blender is 64 bits safe again. Adjust README.Debian accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
        int avail;
100
100
} ThreadSlot;
101
101
 
102
 
static void BLI_lock_malloc_thread()
 
102
static void BLI_lock_malloc_thread(void)
103
103
{
104
104
        pthread_mutex_lock(&_malloc_lock);
105
105
}
106
106
 
107
 
static void BLI_unlock_malloc_thread()
 
107
static void BLI_unlock_malloc_thread(void)
108
108
{
109
109
        pthread_mutex_unlock(&_malloc_lock);
110
110
}