Tagged Questions
0
votes
0answers
6 views
Mac OS BSD copyfile() EINVAL when copying files having double-quotes in the name
I'm trying to use BSD copyfile(...) to copy a file to a mounted AFP share (/Volumes/exchange) with an Obj-C++ code like this:
// #include <copyfile.h>
copyfile_state_t s = ...
0
votes
1answer
45 views
Why can't I use cocoa frameworks in different forked processes?
I was playing with the NSSound class to play a sound in a background process of my own so as to not block user input. I decided to call fork() but that is giving me problems. At the very moment the ...
0
votes
0answers
44 views
PF packet filter: How do anchors with asterisk work?
I'm currently learning the pf packet filter installed on my Macbook (OS X Mountain Lion).
One thing I cannot get my head around are anchors or, more specifically, a certain feature concerning ...
0
votes
1answer
98 views
Netmask/ip-address lookup on BSD/OS X
How do I do ip-address/netmask etc. lookup on OS X (or BSD) using the python standard library function. I'm in the middle of a process and can't make my script working on Mac. On the Linux machine, ...
3
votes
3answers
334 views
Why would `killpg` return “not permitted” when ownership is correct?
I've got some code which fork()s, calls setsid() in the child, and starts some processing. If any of the children quit (waitpid(-1, 0)), I kill all the child process groups:
child_pids = []
for ...
3
votes
1answer
892 views
formatted modified date/time on mac bash?
In my bash script on mac (snow leopard) I have a path and filename, and I need to get the modified date/time of that file. I found I could do:
stat -f "%m" $MYFILE
However, that returns what I ...
0
votes
2answers
266 views
SED on Mac OS X
So I have tried to install gsed via macports but this hasnt solved the issue. I was going to uninstall it to reduce clutter, however, before I do so, how would i fix the error below. It is because ...
0
votes
1answer
88 views
How to identify file being closed is modified or created in action KAUTH_FILEOP_CLOSE from Mac KEXT
Observed that FWRITE or KAUTH_FILEOP_CLOSE_MODIFIED is not consistenly set in action KAUTH_FILEOP_CLOSE during file modification or file copy.
My usecase is - I am trying to figure out whether the ...
3
votes
1answer
678 views
OS requirements for arc4random_uniform()
How do I find out the minimum OS requirements for using arc4random_uniform()? Is it defined in BSD? If so, from what version? Does it run on any Mac OS X version? How about iOS versions? Is there any ...
1
vote
1answer
383 views
Binutils stat illegal option -c
I use stat two times in my script once to find the file files permissions and once to find the size of the file.
`stat -c %A "$directory/$file"`
`stat -c %s "$directory/$file"`
I am using OSX ...
1
vote
1answer
168 views
File I/O with KEXT on Mac
Observed that there are vn_xxx apis to perform operation on the file, for example, vn_rdwr(...). From net search, it appears that vn_rdwr(...) is not recommended to be used.
Few queries around the ...
1
vote
1answer
142 views
How do I find the cpu the current thread is running on, for Mac and BSD?
I'm looking for a function on Mac OS and BSD that's equivalent to Linux's sched_getcpu(), and Windows' GetCurrentProcessorNumberEx() in order to implement a library for cpu-local storage. It's clearly ...
2
votes
1answer
200 views
Using `splice` for Linux… what else for other systems?
On recent Linux kernels, afaict, the fastest way of copying a file or a subset of a file to another file is through the use of the very nice splice system call. This system gets the kernel to manage ...
1
vote
1answer
602 views
Why does this code works on Xcode simulator, but does not work on device?
I'm really hoping, that someone explains it to me.
I'm writing an app that uses it's device mac address, and this code perfectly works on the simulator, but does not work on a device.
I got this code ...
0
votes
1answer
93 views
Why is RLIMIT_NOFILE rlim_max of -1 on BSD?
In the following code:
139 struct rlimit limit;
140
141 method = "rlimit";
142 if (getrlimit(RLIMIT_NOFILE, &limit) < 0) {
143 perror("calling getrlimit");
144 ...
2
votes
4answers
359 views
Determine OS during runtime
Neither ISO C nor POSIX offer functionality to determine the underlying OS during runtime. From a theoretical point of view, it doesn't matter since C offers wrappers for the most common system calls, ...
0
votes
1answer
183 views
Can I call chdir or setenv after fork on Mac OS X?
On OS X, the man page for fork says this:
There are limits to what you can do in the child process. To be totally safe you should restrict yourself to only executing async-signal safe operations ...
1
vote
1answer
208 views
kqueues on Mac OS X: strange event order
I monitor a file for changes in a separate thread using kqueues/ kevent(2).
(I monitor a Python file for reparsing)
I subscribe as following:
EV_SET(&file_change, pyFileP, EVFILT_VNODE,
...
2
votes
3answers
206 views
'git grep' and word boundaries on Mac OS X and BSD
I run git grep "\<blah\>" regularly on my linux development server, but I just discovered that I am not able to use \< and \> on Mac (Mac OS X 10.6.8) (not able to use = it does not find ...
2
votes
2answers
327 views
Get Current User from root mode?
I am writing a login item and I am trying to find if its possible to get the current user.
Lets say, I have logged in with user "Test" and when I execute the exe with root privileges and if I use
...
4
votes
4answers
2k views
Get real path of application from pid?
How can I get the process details like name of application & real path of application from process id?
I am using Mac OS X.
2
votes
1answer
177 views
MACOSX (BSD) equivalent for F_NOTIFY flag for fcntl() function
Does anybody know equivalent for F_NOTIFY flag for fcntl function in a BSD based system?
This flag allows you to receive notifications about file events
(for example file opened, file closed, bytes ...
1
vote
2answers
304 views
What type of threads does OS X have?
Kernel-level threads (like Linux and some *BSD systems) or something else? If there is any difference, I'm using pthreads.
1
vote
0answers
157 views
Xcode: wordexp() does not work some times, returns 0 matched words for “~”
I'm seeing some weird behaviour when using wordexp() in a minimal C program when started within Xcode. I cannot reproduce this by starting the compiled binary from the command line.
#include ...
0
votes
1answer
821 views
Mac: How to get a BSD block device name for a mount path
I have a mount point path like "/Volumes/Something" which i already known is a root directory for a mounted local volume. I need to figure out the BSD block device node name for volume mounted at that ...
1
vote
2answers
388 views
Mac os x systems programmng and bsd
I'd like to get into some mac os x systems programming and wondered, although mac os x is a Mach and bsd hybrid, would a bsd programming book suffice since I can't seem to find any books on mac os x ...
0
votes
1answer
183 views
Is it possible to use distcc in osx for openbsd box?
I found the only one simillar question but that's for linux and xcode only...
http://stackoverflow.com/questions/854675/is-it-possible-to-set-up-a-linux-box-with-distcc-to-build-my-xcode-projects
im ...
0
votes
1answer
137 views
Get BSD file descriptor from OSX CoreServices objects
I am new to OSX user space development. I've read documentation and googled before asking, but still have no clue about the following.
If i am to use CoreServices framework to work with files (FSRef, ...
0
votes
2answers
2k views
Darwin: how to kill parent process without killing child?
On OS X 10.4/5/6:
I have a parent process which spawns a child. I want to kill the parent without killing the child. Is it possible? I can modify source on either app.
1
vote
1answer
1k views
Is there a way to get the BSD number of a device in Mac OS X?
My program reads device paths like /dev/rdisk0 from input and then it looks in IOKit for a disk with the BSD name disk0. For this I have to remove /dev/r from the path.
Hard coding this path can ...
37
votes
4answers
15k views
How do I determine the target architecture of static library (.a) on Mac OS X?
I'm interested in verifying if a given iPhone static library has been built for ARM or Intel.
It's more curiosity than anything. Is there some kind of Mac OS X or BSD specific tool to do this? This ...
2
votes
3answers
1k views
remove an ACL entry for just ONE user in MacOS? oddly difficult [closed]
I'm trying to remove an ACL set for johndoe from all the folders recursively on one of my drives without hosing any other entries! Anyone know how to do this without affecting the ACLs that already ...
5
votes
5answers
4k views
Reading Other Process' Memory in OS X / BSD
I've been trying to understand how to read the memory of other processes on Mac OS X, but I'm not having much luck. I've seen many examples online using ptrace with PEEKDATA and such, however it ...