github.com/DataDog/datadog-agent/pkg/security/secl@v0.55.0-devel.0.20240517055856-10c4965fea94/model/consts_windows.go (about) 1 // Unless explicitly stated otherwise all files in this repository are licensed 2 // under the Apache License Version 2.0. 3 // This product includes software developed at Datadog (https://www.datadoghq.com/). 4 // Copyright 2016-present Datadog, Inc. 5 6 // Package model holds model related files 7 package model 8 9 const ( 10 // SIGKILL id for the kill action 11 SIGKILL = iota + 1 12 ) 13 14 var ( 15 errorConstants = map[string]int{} 16 openFlagsConstants = map[string]int{} 17 fileModeConstants = map[string]int{} 18 inodeModeConstants = map[string]int{} 19 // KernelCapabilityConstants list of kernel capabilities 20 KernelCapabilityConstants = map[string]uint64{} 21 unlinkFlagsConstants = map[string]int{} 22 ptraceConstants = map[string]uint32{} 23 ptraceArchConstants = map[string]uint32{} 24 protConstants = map[string]uint64{} 25 mmapFlagConstants = map[string]uint64{} 26 mmapFlagArchConstants = map[string]uint64{} 27 addressFamilyConstants = map[string]uint16{} 28 29 // SignalConstants list of signals 30 SignalConstants = map[string]int{ 31 "SIGKILL": SIGKILL, 32 } 33 )