InfiniSQL  v0.1.2-alpha
Massive Scale Transaction Processing
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DeadlockMgr.h File Reference

Actor which resolves deadlocks. More...

#include "gch.h"
Include dependency graph for DeadlockMgr.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  taCmd
 calling TransactionAgent and pending command More...
 
class  DeadlockMgr
 Deadlock manager actor. More...
 

Functions

void * deadlockMgr (void *identity)
 launch Engine actor More...
 

Detailed Description

Actor which resolves deadlocks.

Author
Mark Travis mtrav.nosp@m.is15.nosp@m.432+s.nosp@m.rc@g.nosp@m.mail..nosp@m.com
Date
Tue Dec 17 13:07:24 2013

Definition in file DeadlockMgr.h.

Function Documentation

void* deadlockMgr ( void *  identity)

launch Engine actor

Parameters
identityhow to identify this
Returns

Definition at line 179 of file DeadlockMgr.cc.

180 {
181  new DeadlockMgr((Topology::partitionAddress *)identity);
182  while (1)
183  {
184  sleep(10);
185  }
186  return NULL;
187 }