github.com/DataDog/datadog-agent/pkg/security/secl@v0.55.0-devel.0.20240517055856-10c4965fea94/model/syscalls_unsupported.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  //go:build !linux || !(amd64 || arm64)
     7  
     8  package model
     9  
    10  // Syscall represents a syscall identifier
    11  type Syscall int
    12  
    13  func (i Syscall) String() string {
    14  	return "unsupported_platform"
    15  }