Displaying 2 results from an estimated 2 matches for "bibdate".
Did you mean:
  bibdata
  
2004 Jul 14
0
Convex smoothing via 'Iterative Convex Minorant' ?
..."7",
  number =       "3",
  pages =        "310--321",
  month =        sep,
  year =         "1998",
  CODEN =        "????",
  ISSN =         "1061-8600",
  MRclass =      "62G05",
  MRnumber =     "1 646 718",
  bibdate =      "Sat Jan 2 17:33:21 MST 1999",
  URL =          "http://www.amstat.org/publications/jcgs/abstracts98/jongbloed.html",
  acknowledgement = ack-nhfb,
}
------
I know about Roger Koenker and Pin Ng's very interesting "nprq"
package (and its earlier version &q...
2005 Nov 24
10
Any change of rsync using threads instead of fork?
On a typical embedded Linux device, with no MMU, there is no fork() or
it returns ENOSYS.
The nearest replacements are vfork() (which is only useful before
exec*()), or to create threads with pthread_create().
rsync would be a very useful program on such devices, and I was a bit
disappointed to build it, only to find the compile went fine but it
failed at runtime due to ENOSYS.
Is there any