Changeset 8955d66081a98bc43bf9d0e85f9973174ee7b773
- Timestamp:
- 04/25/08 11:31:40
(4 months ago)
- Author:
- Felix Paul Kühne <fkuehne@videolan.org>
- git-committer:
- Felix Paul Kühne <fkuehne@videolan.org> 1209115900 +0200
- git-parent:
[50ce52514c1bc2d4a38b3836fa80c47cfb48a2b5]
- git-author:
- Felix Paul Kühne <fkuehne@videolan.org> 1209115884 +0200
- Message:
Compilation fix related to the recent threading simplifications. Needs additional testing.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r449fd28 |
r8955d66 |
|
| 222 | 222 | { |
|---|
| 223 | 223 | /* Be tolerant, only give a warning here */ |
|---|
| 224 | | msg_Warn( p_aout, "could not check whether device [0x%x] is alive: %4.4s", p_sys->i_selected_dev, (char *)&err ); |
|---|
| | 224 | msg_Warn( p_aout, "could not check whether device [0x%x] is alive: %4.4s", (unsigned int)p_sys->i_selected_dev, (char *)&err ); |
|---|
| 225 | 225 | b_alive = false; |
|---|
| 226 | 226 | } |
|---|
| … | … | |
| 1236 | 1236 | timeout.tv_nsec = (now.tv_usec + 500000) * 1000; |
|---|
| 1237 | 1237 | |
|---|
| 1238 | | if( pthread_cond_timedwait( &w.cond.cond, &w.lock.mutex, &timeout ) ) |
|---|
| | 1238 | if( pthread_cond_timedwait( &w.cond, &w.lock, &timeout ) ) |
|---|
| 1239 | 1239 | { |
|---|
| 1240 | 1240 | msg_Dbg( p_aout, "reached timeout" ); |
|---|