(mconfig *ModuleConfig)
| 265 | } |
| 266 | |
| 267 | func (this *StackUprobeConfig) GetSyscall(mconfig *ModuleConfig) string { |
| 268 | results := []string{} |
| 269 | var new_points []*UprobeArgs |
| 270 | for _, point := range this.Points { |
| 271 | if mconfig.SysCallConf.UpdateSyscallPoint(point) { |
| 272 | results = append(results, point.Name) |
| 273 | } else { |
| 274 | new_points = append(new_points, point) |
| 275 | } |
| 276 | } |
| 277 | this.Points = new_points |
| 278 | return strings.Join(results, ",") |
| 279 | } |
| 280 | |
| 281 | func (this *StackUprobeConfig) Parse_FileConfig(config *UprobeFileConfig) (err error) { |
| 282 | for index, point_config := range config.Points { |
no test coverage detected