Changeset 18383 for trunk/FACT++/src
- Timestamp:
- 11/24/15 13:26:53 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/InterpreterV8.cc
r17655 r18383 1452 1452 void InterpreterV8::JsHandleEvent(const EventImp &evt, uint64_t cnt, const string &service) 1453 1453 { 1454 // FIXME: This blocks service updates, we have to run this 1455 // in a dedicated thread. 1454 1456 const Locker locker; 1455 1457 … … 1520 1522 void InterpreterV8::JsHandleState(const std::string &server, const State &state) 1521 1523 { 1524 // FIXME: This blocks service updates, we have to run this 1525 // in a dedicated thread. 1522 1526 const Locker locker; 1523 1527 … … 1626 1630 int InterpreterV8::JsHandleInterrupt(const EventImp &evt) 1627 1631 { 1632 // FIXME: This blocks service updates, we have to run this 1633 // in a dedicated thread. 1628 1634 const Locker locker; 1629 1635 1630 if (fThreadId<0 )1636 if (fThreadId<0 || fInterruptCallback.IsEmpty()) 1631 1637 return -42; 1632 1638
Note:
See TracChangeset
for help on using the changeset viewer.