(ModFunc mf)
| 370 | } |
| 371 | |
| 372 | public synchronized void seqTrace(ModFunc mf) throws IOException, OtpErlangException { |
| 373 | sendRPC("erlyberly", "seq_trace", |
| 374 | list( |
| 375 | tuple(OtpUtil.atom(self.node()), mbox.self()), |
| 376 | atom(mf.getModuleName()), |
| 377 | atom(mf.getFuncName()), |
| 378 | mf.getArity(), |
| 379 | new OtpErlangAtom(mf.isExported()) |
| 380 | )); |
| 381 | |
| 382 | OtpErlangObject result = receiveRPC(); |
| 383 | |
| 384 | System.out.println(result); |
| 385 | } |
| 386 | |
| 387 | public synchronized OtpErlangObject getProcessState(String pidString) throws IOException, OtpErlangException { |
| 388 | sendRPC("erlyberly", "get_process_state", list(pidString)); |
no test coverage detected