| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 // Copyright 2011 The Go Authors. All rights reserved. | 1 // Copyright 2011 The Go Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
| 3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // +build !cgo,!windows,!plan9 | 5 // +build !cgo,!windows,!plan9 android |
|
minux
2014/07/02 04:21:14
What's your plan for os/user on android?
do you i
crawshaw
2014/07/02 14:57:22
I intend to use cgo+jni to get to android.os.UserM
| |
| 6 | 6 |
| 7 package user | 7 package user |
| 8 | 8 |
| 9 import ( | 9 import ( |
| 10 "fmt" | 10 "fmt" |
| 11 "runtime" | 11 "runtime" |
| 12 ) | 12 ) |
| 13 | 13 |
| 14 func init() { | 14 func init() { |
| 15 implemented = false | 15 implemented = false |
| 16 } | 16 } |
| 17 | 17 |
| 18 func current() (*User, error) { | 18 func current() (*User, error) { |
| 19 return nil, fmt.Errorf("user: Current not implemented on %s/%s", runtime .GOOS, runtime.GOARCH) | 19 return nil, fmt.Errorf("user: Current not implemented on %s/%s", runtime .GOOS, runtime.GOARCH) |
| 20 } | 20 } |
| 21 | 21 |
| 22 func lookup(username string) (*User, error) { | 22 func lookup(username string) (*User, error) { |
| 23 return nil, fmt.Errorf("user: Lookup not implemented on %s/%s", runtime. GOOS, runtime.GOARCH) | 23 return nil, fmt.Errorf("user: Lookup not implemented on %s/%s", runtime. GOOS, runtime.GOARCH) |
| 24 } | 24 } |
| 25 | 25 |
| 26 func lookupId(uid string) (*User, error) { | 26 func lookupId(uid string) (*User, error) { |
| 27 return nil, fmt.Errorf("user: LookupId not implemented on %s/%s", runtim e.GOOS, runtime.GOARCH) | 27 return nil, fmt.Errorf("user: LookupId not implemented on %s/%s", runtim e.GOOS, runtime.GOARCH) |
| 28 } | 28 } |
| OLD | NEW |