File: sysutil_windows.go

package info (click to toggle)
golang-github-gopherjs-gopherjs 0.0~git20170927.0.4152256-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,468 kB
  • sloc: cpp: 91; makefile: 7
file content (7 lines) | stat: -rw-r--r-- 140 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
package sysutil

import "errors"

func RlimitStack() (uint64, error) {
	return 0, errors.New("RlimitStack is not implemented on Windows")
}