Changeset aefe3ed80c4422e50ff0dd753b4395264203a1b7
- Timestamp:
- 08/16/07 21:34:26
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1187292866 +0000
- git-parent:
[be50cf5ba79d4e1203b87d9b32e7b921d1bc4854]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1187292866 +0000
- Message:
Do not export thread init functions.
They should not be used by plugins. And in fact, they are not.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r8fd6167 |
raefe3ed |
|
| 36 | 36 | * Function definitions |
|---|
| 37 | 37 | *****************************************************************************/ |
|---|
| 38 | | VLC_EXPORT( int, __vlc_threads_init, ( vlc_object_t * ) ); |
|---|
| 39 | | VLC_EXPORT( int, __vlc_threads_end, ( vlc_object_t * ) ); |
|---|
| 40 | 38 | VLC_EXPORT( int, __vlc_mutex_init, ( vlc_object_t *, vlc_mutex_t * ) ); |
|---|
| 41 | 39 | VLC_EXPORT( int, __vlc_mutex_destroy, ( const char *, int, vlc_mutex_t * ) ); |
|---|
| rbe50cf5 |
raefe3ed |
|
| 33 | 33 | extern const struct hotkey libvlc_hotkeys[]; |
|---|
| 34 | 34 | extern const size_t libvlc_hotkeys_size; |
|---|
| | 35 | |
|---|
| | 36 | |
|---|
| | 37 | /* |
|---|
| | 38 | * Threads subsystem |
|---|
| | 39 | */ |
|---|
| | 40 | int __vlc_threads_init( vlc_object_t * ); |
|---|
| | 41 | int __vlc_threads_end( vlc_object_t * ); |
|---|
| | 42 | |
|---|
| | 43 | /* |
|---|
| | 44 | * CPU capabilities |
|---|
| | 45 | */ |
|---|
| | 46 | extern uint32_t cpu_flags; |
|---|
| | 47 | uint32_t CPUCapabilities( void ); |
|---|
| | 48 | |
|---|
| | 49 | |
|---|
| | 50 | /* |
|---|
| | 51 | * LibVLC objects stuff |
|---|
| | 52 | */ |
|---|
| 35 | 53 | |
|---|
| 36 | 54 | extern vlc_object_t * |
|---|
| … | … | |
| 77 | 95 | libvlc_global_data_t *vlc_global (void); |
|---|
| 78 | 96 | |
|---|
| 79 | | extern uint32_t cpu_flags; |
|---|
| 80 | | uint32_t CPUCapabilities( void ); |
|---|
| 81 | | |
|---|
| 82 | 97 | /* Private LibVLC data for each objects */ |
|---|
| 83 | 98 | struct vlc_object_internals_t |
|---|
| r3ea2708 |
raefe3ed |
|
| 391 | 391 | __vlc_thread_join |
|---|
| 392 | 392 | __vlc_thread_ready |
|---|
| 393 | | __vlc_threads_end |
|---|
| 394 | 393 | __vlc_thread_set_priority |
|---|
| 395 | | __vlc_threads_init |
|---|
| 396 | 394 | vlc_ureduce |
|---|
| 397 | 395 | vlc_vasprintf |
|---|