File: stat.rb

package info (click to toggle)
jruby 1.5.1-1%2Bdeb6u1
  • links: PTS, VCS
  • area: non-free
  • in suites: squeeze-lts
  • size: 47,024 kB
  • ctags: 74,144
  • sloc: ruby: 398,155; java: 169,506; yacc: 3,782; xml: 2,469; ansic: 415; sh: 279; makefile: 78; tcl: 40
file content (53 lines) | stat: -rw-r--r-- 963 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# This file is generated by rake. Do not edit.

module Platform
  module Stat
    class Stat < FFI::Struct
      self.size = 144
      layout :st_dev, :dev_t, 0,
             :st_ino, :ino_t, 16,
             :st_nlink, :nlink_t, 28,
             :st_mode, :mode_t, 24,
             :st_uid, :uid_t, 32,
             :st_gid, :gid_t, 36,
             :st_size, :off_t, 52,
             :st_blocks, :blkcnt_t, 88,
             :st_atime, :time_t, 60,
             :st_mtime, :time_t, 68,
             :st_ctime, :time_t, 76






    end
    module Constants
      S_IEXEC = 0x40
      S_IREAD = 0x100
      S_IRGRP = 0x20
      S_IROTH = 0x4
      S_IRUSR = 0x100
      S_IRWXG = 0x38
      S_IRWXO = 0x7
      S_IRWXU = 0x1c0
      S_ISGID = 0x400
      S_ISUID = 0x800
      S_IWGRP = 0x10
      S_IWOTH = 0x2
      S_IWRITE = 0x80
      S_IWUSR = 0x80
      S_IXGRP = 0x8
      S_IXOTH = 0x1
      S_IXUSR = 0x40







    end
    include Constants
  end
end