Changeset 3840 for trunk/libtransmission/torrent.c
- Timestamp:
- Nov 16, 2007, 8:41:41 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/torrent.c
r3833 r3840 1047 1047 } 1048 1048 1049 static void 1050 torrentRecheckDoneImpl( void * vtor ) 1051 { 1052 tr_torrentRecheckCompleteness( vtor ); 1053 } 1054 static void 1055 torrentRecheckDoneCB( tr_torrent * tor ) 1056 { 1057 tr_runInEventThread( tor->handle, torrentRecheckDoneImpl, tor ); 1058 } 1049 1059 void 1050 1060 tr_torrentRecheck( tr_torrent * tor ) … … 1056 1066 tr_bitfieldAddRange( tor->uncheckedPieces, 0, tor->info.pieceCount ); 1057 1067 1058 tr_ioRecheckAdd( tor, t r_torrentRecheckCompleteness);1068 tr_ioRecheckAdd( tor, torrentRecheckDoneCB ); 1059 1069 1060 1070 tr_globalUnlock( tor->handle );
Note: See TracChangeset
for help on using the changeset viewer.