File:  [local] / rpl / modules / motif / callbacks.rplc
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Tue Jul 11 16:04:53 2017 UTC (6 years, 10 months ago) by bertrand
Branches: MAIN
CVS tags: HEAD
Patches pour modules/motif.

    1: #include "src/rplexternals.h"
    2: #include "motif.h"
    3: 
    4: void
    5: rplCallback(Widget x_objet, XtPointer argument, XtPointer call)
    6: {
    7:     sXtCallback     *sCallback;
    8: 
    9:     sCallback = argument;
   10:     pthread_mutex_lock(&callbackMutex);
   11:     evaluation(sCallback->status, sCallback->callback, 'E');
   12:     pthread_mutex_unlock(&callbackMutex);
   13:     return;
   14: }
   15: 
   16: // vim: ts=4

CVSweb interface <joel.bertrand@systella.fr>