Просмотр исходного кода

lib/osutil: Use unix lowprio implementation on Android (#4844)

Audrius Butkevicius 7 лет назад
Родитель
Сommit
720e8dedbc
2 измененных файлов с 3 добавлено и 1 удалено
  1. 2 0
      lib/osutil/lowprio_linux.go
  2. 1 1
      lib/osutil/lowprio_unix.go

+ 2 - 0
lib/osutil/lowprio_linux.go

@@ -4,6 +4,8 @@
 // License, v. 2.0. If a copy of the MPL was not distributed with this file,
 // You can obtain one at https://mozilla.org/MPL/2.0/.
 
+// +build !android
+
 package osutil
 
 import (

+ 1 - 1
lib/osutil/lowprio_unix.go

@@ -4,7 +4,7 @@
 // License, v. 2.0. If a copy of the MPL was not distributed with this file,
 // You can obtain one at https://mozilla.org/MPL/2.0/.
 
-// +build !windows,!linux
+// +build !windows,!linux android
 
 package osutil