From: Pasi Kallinen Date: Sun, 2 May 2010 08:15:01 +0000 (+0000) Subject: Use longs in shmem structs (Might prevent alignment problems) X-Git-Tag: v1.6.1-roc-dev~168 X-Git-Url: https://skyeroc.xyz/gitweb/?a=commitdiff_plain;h=ffc63ae8381c4254f4dc88daf8ccce897fc14147;p=dgamelaunch Use longs in shmem structs (Might prevent alignment problems) git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@541 db0b04b0-f4d1-0310-9a6d-de3e77497b0e --- diff --git a/dgamelaunch.h b/dgamelaunch.h index cfd56f6..e3cace2 100644 --- a/dgamelaunch.h +++ b/dgamelaunch.h @@ -86,15 +86,15 @@ struct dg_shm #ifdef USE_SHMEM sem_t dg_sem; #endif - int max_n_games; - int cur_n_games; + long max_n_games; + long cur_n_games; }; struct dg_shm_game { - int in_use; - int nwatchers; - char ttyrec_fn[150]; + long in_use; + long nwatchers; + char ttyrec_fn[150]; }; struct dg_game