Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Extract the result of get*_r before we deallocate the auxiliary buffer | Marios Titas | 2013-08-10 |
| | | | | | | Also comes with tests. This closes #8108. Signed-off-by: Austin Seipp <aseipp@pobox.com> | ||
* | Export SignalInfo(..), SignalSpecificInfo(..); completes #2451 | Ian Lynagh | 2013-07-21 |
| | |||
* | Fix #7399. | Edward Z. Yang | 2013-07-20 |
| | | | | Signed-off-by: Edward Z. Yang <ezyang@mit.edu> | ||
* | Test cleaning fixes | Ian Lynagh | 2013-06-13 |
| | |||
* | Move AC_SUBST([EXTRA_LIBS]) later in configure.ac | Ian Lynagh | 2013-05-21 |
| | | | | | I don't think that it matters, but putting it after all the places that alter EXTRA_LIBS is a little nicer. | ||
* | Add "deprecated in" comments to deprecated pragmas | Ian Lynagh | 2013-02-19 |
| | |||
* | Bump version to 2.7.0.0 | Ian Lynagh | 2013-02-17 |
| | |||
* | Follow changes in base | Ian Lynagh | 2013-02-16 |
| | |||
* | Remove uses of compose(s) in tests | Ian Lynagh | 2013-02-14 |
| | |||
* | Small testsuite refactoring; no functional change | Ian Lynagh | 2013-02-14 |
| | |||
* | Don't bother marking unix tests as 'skip' on Windows | Ian Lynagh | 2013-02-14 |
| | | | | We don't run the unix tests on Windows anyway. | ||
* | Follow changes in the testsuite | Ian Lynagh | 2013-02-11 |
| | |||
* | Terminated has an extra field now | Simon Marlow | 2013-01-30 |
| | |||
* | cope with missing telldir/seekdir (for Android) | Simon Marlow | 2013-01-30 |
| | | | | Submitted by: Nathan Hüsken <nathan.huesken@posteo.de> | ||
* | cope with missing pw_gecos (for Android) | Simon Marlow | 2013-01-30 |
| | | | | Submitted by: Nathan Hüsken <nathan.huesken@posteo.de> | ||
* | change notes | Simon Marlow | 2013-01-25 |
| | |||
* | Indicate whether a process dumped core in the ProcessStatus | Simon Marlow | 2013-01-25 |
| | | | | | | | | | | | | | | | The Bool field of Terminated is new, as is the documentation: data ProcessStatus = Exited ExitCode -- ^ the process exited by calling -- @exit()@ or returning from @main@ | Terminated Signal Bool -- ^ the process was terminated by a -- signal, the @Bool@ is @True@ if a core -- dump was produced | Stopped Signal -- ^ the process was stopped by a signal deriving (Eq, Ord, Show) This is an API change, hence will need a major version bump. | ||
* | Import waitpid() with interruptible | Simon Marlow | 2013-01-25 |
| | |||
* | Rename tests to not start with a digit | Ian Lynagh | 2013-01-25 |
| | |||
* | Use pthread_kill on OS X too | Ian Lynagh | 2013-01-17 |
| | | | | Fixes signals004(threaded1,threaded2) on OS X 32. | ||
* | Fix some parentheses | Ian Lynagh | 2013-01-17 |
| | | | | I assume that this is what was intended. | ||
* | execvpe exists on QNX | Stephen Paul Weber | 2012-12-15 |
| | |||
* | Fix putenv; trac #7342 | Ian Lynagh | 2012-12-01 |
| | | | | | We were freeing the string, but the string becomes part of the environment. | ||
* | Bump base lower version to 4.5 (the version GHC 7.4.1 came with) | Ian Lynagh | 2012-11-30 |
| | | | | and remove code to support older versions | ||
* | Update dependencies | Ian Lynagh | 2012-11-30 |
| | |||
* | Bump version number following new policy | Ian Lynagh | 2012-11-30 |
| | | | | | We now keep the HEAD version numbers as values which would be suitable for immediate release. | ||
* | Add comment to .cabal file saying what GHC 7.6.1 shipped with | Ian Lynagh | 2012-11-30 |
| | |||
* | Export CatchInfo,CatchInfoOnce constructors of Handler | Ian Lynagh | 2012-10-31 |
| | | | | | | | | | | | | | | | | | | | | This fixes warnings following commit 910a642294eb3547d0cbb3d5735ad81b964f137b Author: Simon Peyton Jones <simonpj@microsoft.com> Date: Mon Oct 29 23:25:25 2012 +0000 Do not treat a constructor in a *pattern* as a *use* of that constructor I'm not sure if this is the right thing to do: In commit 1c4608e3b8737dbb9204f850af4d680ccea7d8ec Author: Simon Marlow <marlowsd@gmail.com> Date: Thu Feb 19 10:05:32 2009 +0000 Rewrite of signal-handling. the commit message says: The new implementation has the capability to define signal handlers that have access to the siginfo of the signal (#592), but this functionality is not exposed in this patch. but this at least gets validate builds working again, and we can change it if necessary as part of #2451 | ||
* | Only use unsetenv if HAVE_UNSETENV is defined (fixes #7343) | Simon Hengel | 2012-10-20 |
| | |||
* | Fix warnings. | Paolo Capriotti | 2012-09-06 |
| | |||
* | Add functions for setting file times with high resolution | Marios Titas | 2012-09-03 |
| | |||
* | Bump version to 2.6.0.0 | Paolo Capriotti | 2012-07-19 |
| | |||
* | Fix warnings. | Paolo Capriotti | 2012-07-18 |
| | |||
* | Extract high resolution timestamps from FileStatus | Marios Titas | 2012-07-17 |
| | | | | Signed-off-by: Paolo Capriotti <p.capriotti@gmail.com> | ||
* | Add a WARNING for sleep, and expand documentation. | Paolo Capriotti | 2012-07-02 |
| | | | | | | | | | | sleep doesn't really work on GHC because it is always immediately interrupted by SIGVTALRM used in the RTS. I explained the problem in a comment and added a WARNING pragma. usleep and nanosleep have a similar problem, but, since they have better precision, they can be restarted, so they are not as unusable as sleep. | ||
* | Follow changes in base | Ian Lynagh | 2012-06-19 |
| | |||
* | use Control.Monad.void instead of Foreign.void (which is now deprecated) | Simon Marlow | 2012-04-25 |
| | |||
* | Add workaround for systems without clearenv. | Paolo Capriotti | 2012-04-04 |
| | |||
* | Re-enable posix005 test (#5648) | Paolo Capriotti | 2012-03-30 |
| | |||
* | Add setEnvironment and cleanEnv to System.Posix.Env (#5648) | Paolo Capriotti | 2012-03-30 |
| | |||
* | fix documentation for getAnyProcessStatus/getGroupProcessStatus (#5946) | Simon Marlow | 2012-03-23 |
| | |||
* | Remove tabs from System.Posix.Env.hsc. | Paolo Capriotti | 2012-03-09 |
| | |||
* | Copy tests from GHC testsuite (#1161) | Paolo Capriotti | 2012-03-09 |
| | |||
* | Move nocldstop from HsBase.h to HsUnix.h | Ian Lynagh | 2012-02-26 |
| | |||
* | Update dependencies | Ian Lynagh | 2012-02-22 |
| | |||
* | Convert some FFI decls to use capi | Ian Lynagh | 2012-02-22 |
| | |||
* | Relax base dependency | Ian Lynagh | 2012-02-10 |
| | |||
* | Use error not ioError for consistency. | David Terei | 2012-01-09 |
| | |||
* | Code cleaning for recent changes | David Terei | 2012-01-09 |
| | |||
* | System.Posix.Temp compliance | Deian Stefan | 2012-01-09 |
| |