Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'master' of github.com:perl6/nqp into longer
  • Loading branch information
FROGGS committed Feb 14, 2015
2 parents f82ceb0 + 2776313 commit f302b25
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions docs/ops.markdown
Expand Up @@ -1110,9 +1110,9 @@ directory didn't exist. May throw an exception.
## stat
* `stat(str $path, int $code)`

Given a path and a code, return an int describing that path. Any of
these variants may throw an exception if the platform does not support
them. (JVM does not support `STAT_PLATFORM_BLOCKSIZE` or
Given a path and a code, return an int describing that path using the OS's
stat() function. Any of these variants may throw an exception if the platform
does not support them. (JVM does not support `STAT_PLATFORM_BLOCKSIZE` or
`STAT_PLATFORM_BLOCKS`).

* `nqp::const::STAT_EXISTS`
Expand Down Expand Up @@ -1190,6 +1190,12 @@ Returns preferred I/O size in bytes for interacting with the file.

Returns number of system-specific blocks allocated on disk.

## lstat
* `lstat(str $path, int $code)`

Same as stat, but internally uses the OS's lstat() function, which does *not*
follow symlinks.

## symlink
* `symlink(str $before, str $after)`

Expand Down
2 changes: 1 addition & 1 deletion tools/build/MOAR_REVISION
@@ -1 +1 @@
2015.01-34-g2d7eddb
2015.01-69-g5bbfd1a

0 comments on commit f302b25

Please sign in to comment.