()
| 996 | } |
| 997 | |
| 998 | func (this *ModuleConfig) GetConfigMap() ConfigMap { |
| 999 | config := ConfigMap{} |
| 1000 | config.stackplz_pid = this.SelfPid |
| 1001 | if len(this.TNameWhitelist) > 0 { |
| 1002 | config.thread_whitelist = 1 |
| 1003 | } |
| 1004 | this.logger.Printf("ConfigMap{stackplz_pid=%d,thread_whitelist=%d}", config.stackplz_pid, config.thread_whitelist) |
| 1005 | return config |
| 1006 | } |
| 1007 | |
| 1008 | func (this *ModuleConfig) DumpOpen(dump_name string) { |
| 1009 | if dump_name == "" { |
no outgoing calls
no test coverage detected