Skip to content

Commit

Permalink
Ignore the things we won't fix in the 0.10 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
peternewman committed Feb 16, 2018
1 parent 9233ce1 commit 08e0d76
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .codespellignore
Expand Up @@ -57,3 +57,25 @@ const uint8_t BaseRobeWidget::SOM;
'%s attempted to get %s which wasn\'t declared' %
'%s attempted to set %s which wasn\'t declared' %
'min': numpy.amin(array),
void Syncronize();
SC_E133_NONEXISTANT_ENDPOINT = 0x0005,
saver_thread.Syncronize();
void FilePreferenceSaverThread::Syncronize() {
Mutex syncronize_mutex;
syncronize_mutex.Lock();
&syncronize_mutex));
condition_var.Wait(&syncronize_mutex);
ola::e133::SC_E133_NONEXISTANT_ENDPOINT,
case ola::e133::SC_E133_NONEXISTANT_ENDPOINT:
*status_code = ola::e133::SC_E133_NONEXISTANT_ENDPOINT;
case ola::e133::SC_E133_NONEXISTANT_ENDPOINT:
* @brief A LibUsbAdaptor for use with Syncronous widgets.
* When using syncronous mode, we don't have the requirement of interacting
class SyncronousLibUsbAdaptor : public BaseLibUsbAdaptor {
SyncronousLibUsbAdaptor() {}
DISALLOW_COPY_AND_ASSIGN(SyncronousLibUsbAdaptor);
* @brief A LibUsbAdaptor for use with Asyncronous widgets.
* Asyncronous mode requires notifying the LibUsbThread when handles are opened
class AsyncronousLibUsbAdaptor : public BaseLibUsbAdaptor {
explicit AsyncronousLibUsbAdaptor(class LibUsbThread *thread)
DISALLOW_COPY_AND_ASSIGN(AsyncronousLibUsbAdaptor);

0 comments on commit 08e0d76

Please sign in to comment.