Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(62)

Side by Side Diff: src/pkg/syscall/types_linux.go

Issue 6905057: code review 6905057: os: Improve the accuracy of os.Chtimes (Closed)
Patch Set: diff -r ac06fe42df6d https://code.google.com/p/go Created 11 years, 3 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/pkg/syscall/syscall_windows.go ('k') | src/pkg/syscall/zsyscall_linux_386.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2009 The Go Authors. All rights reserved. 1 // Copyright 2009 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 ignore 5 // +build ignore
6 6
7 /* 7 /*
8 Input to cgo -godefs. See also mkerrors.sh and mkall.sh 8 Input to cgo -godefs. See also mkerrors.sh and mkall.sh
9 */ 9 */
10 10
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 type FdSet C.fd_set 341 type FdSet C.fd_set
342 342
343 type Sysinfo_t C.struct_sysinfo 343 type Sysinfo_t C.struct_sysinfo
344 344
345 type Utsname C.struct_utsname 345 type Utsname C.struct_utsname
346 346
347 type Ustat_t C.struct_ustat 347 type Ustat_t C.struct_ustat
348 348
349 type EpollEvent C.struct_my_epoll_event 349 type EpollEvent C.struct_my_epoll_event
350 350
351 const (
352 _AT_FDCWD = C.AT_FDCWD
353 )
354
351 // Terminal handling 355 // Terminal handling
352 356
353 type Termios C.struct_termios 357 type Termios C.struct_termios
354 358
355 const ( 359 const (
356 VINTR = C.VINTR 360 VINTR = C.VINTR
357 VQUIT = C.VQUIT 361 VQUIT = C.VQUIT
358 VERASE = C.VERASE 362 VERASE = C.VERASE
359 VKILL = C.VKILL 363 VKILL = C.VKILL
360 VEOF = C.VEOF 364 VEOF = C.VEOF
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 TOSTOP = C.TOSTOP 450 TOSTOP = C.TOSTOP
447 ECHOCTL = C.ECHOCTL 451 ECHOCTL = C.ECHOCTL
448 ECHOPRT = C.ECHOPRT 452 ECHOPRT = C.ECHOPRT
449 ECHOKE = C.ECHOKE 453 ECHOKE = C.ECHOKE
450 FLUSHO = C.FLUSHO 454 FLUSHO = C.FLUSHO
451 PENDIN = C.PENDIN 455 PENDIN = C.PENDIN
452 IEXTEN = C.IEXTEN 456 IEXTEN = C.IEXTEN
453 TCGETS = C.TCGETS 457 TCGETS = C.TCGETS
454 TCSETS = C.TCSETS 458 TCSETS = C.TCSETS
455 ) 459 )
OLDNEW
« no previous file with comments | « src/pkg/syscall/syscall_windows.go ('k') | src/pkg/syscall/zsyscall_linux_386.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b