Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
33f7596f
Commit
33f7596f
authored
Feb 14, 2012
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
syscall: linux Tgkill takes a Signal too
R=golang-dev, gri CC=golang-dev
https://golang.org/cl/5649089
parent
1076d4ef
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
src/pkg/syscall/syscall_linux.go
src/pkg/syscall/syscall_linux.go
+1
-1
src/pkg/syscall/zsyscall_linux_386.go
src/pkg/syscall/zsyscall_linux_386.go
+1
-1
src/pkg/syscall/zsyscall_linux_amd64.go
src/pkg/syscall/zsyscall_linux_amd64.go
+1
-1
src/pkg/syscall/zsyscall_linux_arm.go
src/pkg/syscall/zsyscall_linux_arm.go
+1
-1
No files found.
src/pkg/syscall/syscall_linux.go
View file @
33f7596f
...
...
@@ -856,7 +856,7 @@ func Mount(source string, target string, fstype string, flags uintptr, data stri
//sys Sync()
//sysnb Sysinfo(info *Sysinfo_t) (err error)
//sys Tee(rfd int, wfd int, len int, flags int) (n int64, err error)
//sysnb Tgkill(tgid int, tid int, sig
int
) (err error)
//sysnb Tgkill(tgid int, tid int, sig
Signal
) (err error)
//sysnb Times(tms *Tms) (ticks uintptr, err error)
//sysnb Umask(mask int) (oldmask int)
//sysnb Uname(buf *Utsname) (err error)
...
...
src/pkg/syscall/zsyscall_linux_386.go
View file @
33f7596f
...
...
@@ -793,7 +793,7 @@ func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
func
Tgkill
(
tgid
int
,
tid
int
,
sig
int
)
(
err
error
)
{
func
Tgkill
(
tgid
int
,
tid
int
,
sig
Signal
)
(
err
error
)
{
_
,
_
,
e1
:=
RawSyscall
(
SYS_TGKILL
,
uintptr
(
tgid
),
uintptr
(
tid
),
uintptr
(
sig
))
if
e1
!=
0
{
err
=
e1
...
...
src/pkg/syscall/zsyscall_linux_amd64.go
View file @
33f7596f
...
...
@@ -793,7 +793,7 @@ func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
func
Tgkill
(
tgid
int
,
tid
int
,
sig
int
)
(
err
error
)
{
func
Tgkill
(
tgid
int
,
tid
int
,
sig
Signal
)
(
err
error
)
{
_
,
_
,
e1
:=
RawSyscall
(
SYS_TGKILL
,
uintptr
(
tgid
),
uintptr
(
tid
),
uintptr
(
sig
))
if
e1
!=
0
{
err
=
e1
...
...
src/pkg/syscall/zsyscall_linux_arm.go
View file @
33f7596f
...
...
@@ -793,7 +793,7 @@ func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) {
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
func
Tgkill
(
tgid
int
,
tid
int
,
sig
int
)
(
err
error
)
{
func
Tgkill
(
tgid
int
,
tid
int
,
sig
Signal
)
(
err
error
)
{
_
,
_
,
e1
:=
RawSyscall
(
SYS_TGKILL
,
uintptr
(
tgid
),
uintptr
(
tid
),
uintptr
(
sig
))
if
e1
!=
0
{
err
=
e1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment