diff options
Diffstat (limited to 'ext2fs/ext2fs.h')
-rw-r--r-- | ext2fs/ext2fs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext2fs/ext2fs.h b/ext2fs/ext2fs.h index afcd25c8..a3d22b28 100644 --- a/ext2fs/ext2fs.h +++ b/ext2fs/ext2fs.h @@ -433,7 +433,7 @@ void write_all_disknodes (); /* What to lock if changing global data data (e.g., the superblock or block group descriptors or bitmaps). */ -pthread_spinlock_t global_lock; +extern pthread_spinlock_t global_lock; /* Where to record such changes. */ struct pokel global_pokel; @@ -442,7 +442,7 @@ struct pokel global_pokel; record which disk blocks are actually modified, so we don't stomp on parts of the disk which are backed by file pagers. */ unsigned char *modified_global_blocks; -pthread_spinlock_t modified_global_blocks_lock; +extern pthread_spinlock_t modified_global_blocks_lock; extern int global_block_modified (block_t block); extern void record_global_poke (void *ptr); |