You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

72 lines
2.4 KiB

  1. // Copyright 2009 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build windows
  5. // Package windows contains an interface to the low-level operating system
  6. // primitives. OS details vary depending on the underlying system, and
  7. // by default, godoc will display the OS-specific documentation for the current
  8. // system. If you want godoc to display syscall documentation for another
  9. // system, set $GOOS and $GOARCH to the desired system. For example, if
  10. // you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
  11. // to freebsd and $GOARCH to arm.
  12. // The primary use of this package is inside other packages that provide a more
  13. // portable interface to the system, such as "os", "time" and "net". Use
  14. // those packages rather than this one if you can.
  15. // For details of the functions and data types in this package consult
  16. // the manuals for the appropriate operating system.
  17. // These calls return err == nil to indicate success; otherwise
  18. // err represents an operating system error describing the failure and
  19. // holds a value of type syscall.Errno.
  20. package windows // import "golang.org/x/sys/windows"
  21. import (
  22. "syscall"
  23. )
  24. // ByteSliceFromString returns a NUL-terminated slice of bytes
  25. // containing the text of s. If s contains a NUL byte at any
  26. // location, it returns (nil, syscall.EINVAL).
  27. func ByteSliceFromString(s string) ([]byte, error) {
  28. for i := 0; i < len(s); i++ {
  29. if s[i] == 0 {
  30. return nil, syscall.EINVAL
  31. }
  32. }
  33. a := make([]byte, len(s)+1)
  34. copy(a, s)
  35. return a, nil
  36. }
  37. // BytePtrFromString returns a pointer to a NUL-terminated array of
  38. // bytes containing the text of s. If s contains a NUL byte at any
  39. // location, it returns (nil, syscall.EINVAL).
  40. func BytePtrFromString(s string) (*byte, error) {
  41. a, err := ByteSliceFromString(s)
  42. if err != nil {
  43. return nil, err
  44. }
  45. return &a[0], nil
  46. }
  47. // Single-word zero for use when we need a valid pointer to 0 bytes.
  48. // See mksyscall.pl.
  49. var _zero uintptr
  50. func (ts *Timespec) Unix() (sec int64, nsec int64) {
  51. return int64(ts.Sec), int64(ts.Nsec)
  52. }
  53. func (tv *Timeval) Unix() (sec int64, nsec int64) {
  54. return int64(tv.Sec), int64(tv.Usec) * 1000
  55. }
  56. func (ts *Timespec) Nano() int64 {
  57. return int64(ts.Sec)*1e9 + int64(ts.Nsec)
  58. }
  59. func (tv *Timeval) Nano() int64 {
  60. return int64(tv.Sec)*1e9 + int64(tv.Usec)*1000
  61. }