Skip to content
Snippets Groups Projects
Commit d7b1395a authored by slevy's avatar slevy
Browse files

Oh, let's take volatile out of the CVS trunk for now.

parent 8c70232b
No related branches found
No related tags found
No related merge requests found
......@@ -248,10 +248,10 @@ typedef int (*SpecksPickFunc)( struct stuff *, GLuint *hit, struct specklist *,
struct stuff {
/* owned by display thread: */
struct specklist * volatile sl; /* Current display = anima[curdata][curtime] */
struct specklist *sl; /* Current display = anima[curdata][curtime] */
/* shared with possible reader threads: */
struct specklist * volatile * anima[MAXFILES]; /* anima[ndata][ntimes]: All data. Shared with reader threads. */
struct specklist **anima[MAXFILES]; /* anima[ndata][ntimes]: All data. Shared with reader threads. */
/* rest owned by display thread. */
char dataname[MAXFILES][12];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment