| 1000 | REGISTER_CMD(BuggifyKnobsCmd, "buggifyknobs"); |
| 1001 | |
| 1002 | struct AvailableQueryOptionsCmd { |
| 1003 | static const char* name; |
| 1004 | static Future<Reference<ExtMsgReply>> call(Reference<ExtConnection> ec, |
| 1005 | Reference<ExtMsgQuery> query, |
| 1006 | Reference<ExtMsgReply> reply) { |
| 1007 | unsigned int opts = EXHAUST; |
| 1008 | reply->addDocument(BSON("ok" << 1.0 << "options" << opts)); |
| 1009 | return reply; |
| 1010 | } |
| 1011 | }; |
| 1012 | REGISTER_CMD(AvailableQueryOptionsCmd, "availablequeryoptions"); |
| 1013 | |
| 1014 | struct GetMemoryUsageCmd { |
nothing calls this directly
no outgoing calls
no test coverage detected