runtime_other.go raw

   1  // Copyright 2020 The gVisor Authors.
   2  //
   3  // Use of this source code is governed by a BSD-style
   4  // license that can be found in the LICENSE file.
   5  
   6  //go:build !amd64
   7  // +build !amd64
   8  
   9  package sync
  10  
  11  const supportsWakeSuppression = false
  12  
  13  func preGoReadyWakeSuppression()  {} // Never called.
  14  func postGoReadyWakeSuppression() {} // Never called.
  15