]> git.sesse.net Git - vlc/commit
* ./configure.ac.in: removed now unnecessary --force-exe-suffix flag.
authorSam Hocevar <sam@videolan.org>
Fri, 4 Oct 2002 18:07:22 +0000 (18:07 +0000)
committerSam Hocevar <sam@videolan.org>
Fri, 4 Oct 2002 18:07:22 +0000 (18:07 +0000)
commit89987e1109b96f81396b9248490b6aed717d7804
tree3d391e9fead18c26c90474c4cd4301e75079208a
parent656bdceac2665fe0ed4215550ed34d05fab13264
  * ./configure.ac.in: removed now unnecessary --force-exe-suffix flag.
  * ./src/misc/objects.c: structure_lock is now local.
  * ./src/misc/threads.c: implemented named mutexes which provide a handy
    way to protect data across plugins which might be sharing the same
    resources. Thread-unsafe libraries come to mind, but we can imagine
    using a named mutex for configuration files, or special devices.
  * ./include/main.h: removed global_lock because of vlc_mutex_need, removed
    p_global_data because it was never used, removed structure_lock because
    it did not belong here.
12 files changed:
configure.ac.in
include/main.h
include/vlc_threads_funcs.h
modules/access/vcd/vcd.c
modules/audio_output/arts.c
modules/gui/gtk/gtk.c
modules/misc/gtk_main.c
modules/video_output/qte/qte.cpp
src/audio_output/input.c
src/libvlc.c
src/misc/objects.c
src/misc/threads.c