/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to event.c

  • Committer: Suren A. Chilingaryan
  • Date: 2011-12-14 03:17:00 UTC
  • Revision ID: csa@dside.dyndns.org-20111214031700-kjxl2buzzpjqmtc3
small cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
    return 0;    
122
122
}
123
123
 
 
124
int pcilib_configure_autotrigger(pcilib_t *ctx, pcilib_timeout_t interval, pcilib_event_t event, size_t trigger_size, void *trigger_data) {
 
125
        /* To support hardware without autotriggering, we need to provide in event.c a code 
 
126
        to generate multiple triggers in a thread (available in cli). The function should 
 
127
        be re-enabled afterwards: just set parameters and let implementation decide if it 
 
128
        can make triggering in hardware or will use our emulation */
 
129
        
 
130
    return PCILIB_ERROR_NOTSUPPORTED;
 
131
}
 
132
 
124
133
int pcilib_configure_preprocessing_threads(pcilib_t *ctx, size_t max_threads) {
125
134
    pcilib_event_api_description_t *api;
126
135