Forgot your password?
typodupeerror

Comment Re:Bull (Score 1) 830

It says I must fsync the directory, and nothing in Posix even says it's possible to open() or fsync() a directory; you have to use opendir().)

*Bzzt*

BigMac:~ james$ cat > open_dir.c
#include <fcntl.h>
int main() { return open(".", O_RDONLY); }
BigMac:~ james$ gcc -o open_dir open_dir.c
BigMac:~ james$ ./open_dir ; echo $?
3
BigMac:~ james$ uname -a
Darwin BigMac.local 9.6.0 Darwin Kernel Version 9.6.0: Mon Nov 24 17:37:00 PST 2008; root:xnu-1228.9.59~1/RELEASE_I386 i386

The "Single Unix Specification" you mentioned says you can open() a directory with O_SEARCH, too. MacOS doesn't have that.

Either way, I expect you'll be able to fsync() that fd; that's all you need.

The Internet

Bittorrent To Cause Internet Meltdown 872

Gimble writes "Richard Bennett has an article at the Register claiming that a recent uTorrent decision to use UDP for file transfers to avoid ISP 'traffic management' restrictions will cause a meltdown of the internet reducing everybody's bandwidth to a quarter of their current value. Other folks have also expressed concern that this may not be the best thing for the internet."

New MacBook Case Leak Rumors 243

Someone noted that there are more macbook case leaks which look to all but confirm a new MacBook and possibly a MacBook Pro expected to be announced for later this week. There seem to be fewer ports, and no leaks of a 17" aircraft carrier laptop.

Comment Re:Not Bad, Not Spectacular (Score 1) 590

| The thing that caught my eye was the addition of a second gigabit ethernet port. Dual gigabit ethernet ports
| means instant network rendering for Logic Node, XGrid, or any app that supports it. No expensive (given, these
| Macs are costly enough as is) gigabit router needed.

I'm not sure what you're on?

I don't know anything about Logic Node or XGrid, but I know enough for your use of Dual-gigE + routers that you're not clued up.

If Dual-GigE solves your problems, then you're not talking about routers; You're talking switches. GigE switches arn't expensive now. The first URL I hit on Google: http://www.amazon.co.uk/exec/obidos/ASIN/B0000E5SE S/026-9812224-0738810

Slashdot Top Deals

"Religion is something left over from the infancy of our intelligence, it will fade away as we adopt reason and science as our guidelines." -- Bertrand Russell

Working...