Changeset 204 for branches/samba-3.2.x/source/lib/tdb/common
- Timestamp:
- May 20, 2009, 6:46:53 PM (16 years ago)
- Location:
- branches/samba-3.2.x/source/lib/tdb/common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.2.x/source/lib/tdb/common/io.c
r133 r204 208 208 #ifdef HAVE_MMAP 209 209 if (tdb->map_ptr) { 210 int ret = munmap(tdb->map_ptr, tdb->map_size); 210 int ret; 211 212 ret = munmap(tdb->map_ptr, tdb->map_size); 211 213 if (ret != 0) 212 214 return ret; -
branches/samba-3.2.x/source/lib/tdb/common/transaction.c
r133 r204 569 569 return -1; 570 570 } 571 #ifdef MS_SYNC571 #ifdef HAVE_MMAP 572 572 if (tdb->map_ptr) { 573 573 tdb_off_t moffset = offset & ~(tdb->page_size-1);
Note:
See TracChangeset
for help on using the changeset viewer.