diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-18 14:31:39 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-18 14:31:39 +0000 |
commit | e4ac1f1382f67f61f527d41ab4f32c34720f0c2d (patch) | |
tree | 5f06f1c2a1b3a271a174b23010b320c497da7f69 /src/xine-engine/configfile.h | |
parent | 1019adab755d0d4f9724dc18279adb4ac2772c33 (diff) | |
download | xine-lib-e4ac1f1382f67f61f527d41ab4f32c34720f0c2d.tar.gz xine-lib-e4ac1f1382f67f61f527d41ab4f32c34720f0c2d.tar.bz2 |
serialize config access
CVS patchset: 2688
CVS date: 2002/09/18 14:31:39
Diffstat (limited to 'src/xine-engine/configfile.h')
-rw-r--r-- | src/xine-engine/configfile.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/xine-engine/configfile.h b/src/xine-engine/configfile.h index 6544a7e69..7330e5a12 100644 --- a/src/xine-engine/configfile.h +++ b/src/xine-engine/configfile.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: configfile.h,v 1.17 2002/09/15 11:35:09 jcdutton Exp $ + * $Id: configfile.h,v 1.18 2002/09/18 14:31:39 mroi Exp $ * * config file management * @@ -177,6 +177,11 @@ struct config_values_s { * config values are stored here: */ cfg_entry_t *first, *last, *cur; + + /* + * mutex for modification to the config + */ + pthread_mutex_t config_lock; }; /* |