Revision e58f87a9 lib/opcodes.py

b/lib/opcodes.py
784 784
    ]
785 785

  
786 786

  
787
class OpTestJobqueue(OpCode):
788
  """Utility opcode to test some aspects of the job queue.
789

  
790
  """
791
  OP_ID = "OP_TEST_JQUEUE"
792
  __slots__ = [
793
    "notify_waitlock",
794
    "notify_exec",
795
    "log_messages",
796
    "fail",
797
    ]
798

  
799

  
787 800
OP_MAPPING = dict([(v.OP_ID, v) for v in globals().values()
788 801
                   if (isinstance(v, type) and issubclass(v, OpCode) and
789 802
                       hasattr(v, "OP_ID"))])

Also available in: Unified diff