Tagged Questions
0
votes
0answers
23 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:
Minimal example:
#include <string>
#include <string.h>
...
1
vote
2answers
80 views
How do I get the partition offset in OS X with C/C++?
I want to create my own volume id using the drive serial + partition offset + partition size, but I need to know how to get the partition information on OS X. I have (unsucceedingly) tried the ...
1
vote
3answers
94 views
Python is passing 32bit pointer address to C functions
I would like to call my C functions within a shared library from Python scripts. Problem arrises when passing pointers, the 64bit addresses seem to be truncated to 32bit addresses within the called ...
1
vote
0answers
39 views
Rendering to a texture via FBO
I am trying to apply post processing effects to a small test program for OS X. I am trying to render the image into a texture and then render the texture to the screen (i haven't even gotten to ...
2
votes
1answer
28 views
Defining main in shared library on OSX
I'm using xcode to write an OSX app in c/c++.
I'm linking a shared library (somelib.dylib) to the application and I'd like for the main function to reside in the shared library, not the main ...
0
votes
2answers
26 views
gtk+ crashes on calling any cairo drawing function
Sorry for my bad English.
I am learning gtk+ 3 as a "helloworld" by following this article https://developer.gnome.org/gtk3/stable/gtk-getting-started.html
My environment:
* Mac OS X 10.8.3
* ...
0
votes
1answer
17 views
Corefoundation CFArray ownership
I found a strange problem while using Core Foundation Array! Here is the code snippet
fname = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("%s%s"), path, ep->d_name);
...
-4
votes
1answer
62 views
How can I ensure I can read the file and its not locked by another process
My environment is Mac OS X and my program is in C++
If a process A is accessing a file in such a way that other processes will be denied read access to that file.
Then my process B tries to open the ...
0
votes
1answer
31 views
Finding start of main function with ptrace
I have a file scope kernel extension that informs a daemon when an application is launched. The daemon is required to pause the launched application at the beginning of its first instruction in ...
2
votes
2answers
35 views
getenv - Environment variable on Mac OS X and Linux
getenv is used for accessing environment variables on Mac OS X and Linux, it takes char* as input. Does that mean that I cannot store UNICODE strings as value in these environment variables on these ...
0
votes
1answer
31 views
Compiler Error in ptmconvert (C/C++)
I'm trying to compile some mixed C++ and C code on a mac in the terminal for an image converter, and I'm running into several errors. The imager converter code is available here:
...
0
votes
1answer
33 views
Low level windowing API for OS X
I am looking for a low level windowing API for OS X that creates (or allows me to easily create) an OpenGL context. I have tried GLUT, GLFW, SDL, and the Cocoa windowing system, but they all have some ...
-5
votes
1answer
65 views
How to write interactive wallpaper for Mac OS X Lion
I need to write interactive live wallpaper for Mac OS X Lion on C/C++. What type of application (target in terms of xcode) it must be? plugin? Cocoa application? etc? Please help me with some ...
1
vote
0answers
33 views
vsnprintf equivalent for wide strings on Posix based systems
On Mac OS X (most UNIX based systems),
vsnprintf return the number of characters printed (not including the trailing '\0' used to end output to strings) OR if an error occurs it returns the number of ...
0
votes
1answer
68 views
_vscwprintf on Mac OS X/Linux
I am porting an application on Mac OS X which was written for Windows.
In this application, there are many instances of _vscwprintf and _vscprintf.
This question helped me to implement _vsprintf on ...
0
votes
3answers
90 views
receiving an error error: use of undeclared identifier '__stl_hash_string' { return __stl_hash_string( __s.c_str() ); }
I am receiving an error
error: use of undeclared identifier '__stl_hash_string'
{ return __stl_hash_string( __s.c_str() ); }
while compiling using Xcode 4.6.1 on Mac OS 10.8.
...
0
votes
2answers
39 views
mmap for write under MacOSX 10.8.2 with XCode 4.6 will make program crash
I try to run a simple test of mmap under MacOSX 10.8.2, with XCode 4.6. This program is as follows, the file mapped for read is OK while the access to the write pointer "target" will make the program ...
0
votes
0answers
93 views
How do I get the Hard Drive serial number of a USB drive on OS X?
I have looked at DADiskCopyDescription and enumerating IOUSBDevice from IOKit and neither provide me with the serial number of the USB hard drive. The latter provides a USB Serial number which is not ...
2
votes
1answer
48 views
How do I check a username/password combination in OS X?
In windows I can call LogonUserW or on linux pam_authenticate to check whether a given username/password is correct. How do I do this on OS X (for c/c++)?
6
votes
2answers
237 views
Valgrind shows memory leak on empty program on Mac OSX 10.8
Valgrind installed using brew.
#include <stdio.h>
#include <stdlib.h>
int main()
{
return 0;
}
gcc -g -o hello hello.c
valgrind --tool=memcheck --leak-check=yes ./hello
0
votes
1answer
55 views
jni.h and expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘void’
My working environment is mac OSX 10.8.3.
now I'm testing JNI.
I made HelloJNI.java file and execute javac and javah command in terminal.
So I got HelloJNI.java, HelloJNI.class, ...
-1
votes
1answer
66 views
My C-Code runs slowly in Mac comparing to Ubuntu [closed]
I have written a scientific code in C. I compile the code in Ubuntu using gcc 4.7.2, and in MBP using gcc 4.2. My Makefile looks like this:
CC = gcc
CFLAGS = -c -fPIC -Wall -O3 -lpthread -g
BaseDir = ...
1
vote
2answers
172 views
How to pass objective-c function as a callback to C function?
I want to call a c function from objective-c and pass objective-c function as a callback
the problem is this function has a callback as parameter, so I have to pass objective-c function as a call ...
1
vote
1answer
58 views
Simple curses.h program, nothing is showed in terminal
I have to use a curses.h library to my school project. We are programming in NetBeans. I am trying to create just simple program on my mac, everything seems be good. Code is compiled, a new terminal ...
1
vote
0answers
57 views
Obtain peferred domain controller (Active Directory) in Mac OS X programmatically
I'd like to get preferred domain controller name/adress on Mac, joined to Active Directory (MS Windows Server with Domain Controller) programmatically with C/Objective-C. The better solution for now ...
0
votes
0answers
24 views
Copy files using CFStream
Does anyone have a link to sample code to using Core Foundations's infra to copy file from one location to another. It will be useful if it can be async. Even a sync example will suffice. I have my ...
1
vote
4answers
222 views
How can a C program tell if it was launched from the Finder?
The title kind of says it all:
I'm wondering if there's any _NSWasLaunchedFromFinder-type API or hook that an OS/X C program (of the int main(int argc, char* argv[]) variety) could use to determine ...
1
vote
1answer
23 views
How to know directory where an executable was launched from in OS/X?
When a C program written in the conventional int main(int argc, char* argv[]) style is launched from the Finder, it starts in the home directory of the user who launched it. (e.g. /Users/Fork).
Is ...
1
vote
2answers
50 views
secondary binary tree insertion segmentation fault
After checking for whether the node is null in bst, I get a segmentation fault when I try to assign values to members of bst
#include <stdio.h>
#include <stdlib.h>
typedef int Data_Item;
...
0
votes
2answers
59 views
C socket not running on Mac OS X
The following code runs and communicates with the client without a problem on Ubuntu. However, I need to run on Mac OS X. I can compile it with no errors however when I am trying to run it the ...
1
vote
2answers
51 views
Pointer error message
I apologize by advance if my question seems absolutely trivial, but I don't understand why if I run
int main(){
int *count = 0;
printf("%d",*count);
}
I have no input (using Xcode) and an ...
0
votes
0answers
40 views
How to play iTunes protected files? [closed]
Good day i search C/C++ library for playing iTunes protected files.Now my choice stops between GStreamer and QTKit. In QTKit i implement first example link ...
0
votes
1answer
41 views
Building libconfig 64bit on Mac OS X
I would like to build and install libconfig as 64-bit on my Mac OS X (v10.8.3).
Which are the commands that I could use inside the terminal?
If I simply use ./configure and sudo make install the ...
0
votes
1answer
42 views
CFURL does not give full data when download
Iam trying to use CFHTTP to write a small downloader. Unfortunately I cannot use NSURL which is very easy. I basically want an async way to download the data and store it in a file. I have not yet ...
2
votes
2answers
104 views
Can a GDBM database created in C be opened in Python?
I have a Python program in which I am trying to use this rhyming dictionary to look up rhymes.
Part of the dictionary library setup works by a C program creating three gdbm .db files. The code that ...
0
votes
0answers
18 views
How configure & build Stanford rayshade for current OS X?
I want to configure and build the Stanford rayshade application for a current version of Mac OS X. (See http://www-graphics.stanford.edu/~cek/rayshade/rayshade.html .) I'd like details on:
what ...
4
votes
2answers
83 views
Inline functions result in decreased performance. Why? How can I fix it?
When programming, I like to cut my code into easily re-usable function that perform specific actions.
It helps me organize, remember and optimize my code. It also makes it so easily refactorable!
As ...
6
votes
3answers
100 views
How does Terminal read from stdout and draw the text on-screen?
I have a general question about how the terminal and processes work.
From any process, if I write to stdout (i.e. file descriptor 2), it gets drawn on the terminal window. My question is, how is this ...
2
votes
1answer
85 views
LLVM and GCC, different output same code
This is a sample code just to show a different output from the LLVM compiler and the GCC. I wonder why? The answer should be very simple, but I can't see it.
(Xcode 4.6.1)
The code:
#include ...
1
vote
1answer
49 views
How to get Keyboard Layout in Mac With C++
i find below code that get keyboard layout but cant convert it to string :
TISInputSourceRef sourceRef = TISCopyCurrentKeyboardLayoutInputSource();
If you use CFShow(sourceRef); you can see ...
1
vote
2answers
45 views
How to not ignore maximum version with dyld
I'm attempting to version a shared library under OS X (10.7.5), but I am having trouble getting dyld to recognize a maximum compatibility version (minimum versions are okay). Consider the test code ...
0
votes
1answer
71 views
Hook a C function
I want to hook the function AudioUnitInitialize to grab the Audio Unit of an application by injecting a bundle at the application start.
I found an example (http://pastie.org/1882125) but it uses the ...
0
votes
1answer
74 views
Compiling and linking libev on Mac OS X
Yet another symbol(s) not found issue with Mac OS X. I wrote a C program that uses the libev event loop library that when compiled produces this output:
$ make
clang midnight.c midnight_logging.c -o ...
0
votes
1answer
38 views
sqlite3 bus error
I'm writing an app that uses sqlite3. For some very bizarre reason, it crashes only on some machines. I was unable to reproduce the error, but a couple beta testers are reporting it. When the app is ...
0
votes
1answer
86 views
How to configure TCP_KEEPALIVE under MAC OS X
Currently I've encountered this problem: how to detect unpredictable connection broken.
I utilized SO_KEEPALIVE,TCP_KEEPIDLE,TCP_KEEPINTVL and TCP_KEEPCNT to solve it under linux, which seems working ...
1
vote
1answer
51 views
'Valgrind not found' (OS X 10.8) [closed]
I attempted to install Valgrind from source by doing a typical ./configure and make, and it looks like it installed, as Terminal didn't give me any warnings, but when I attempted to use the command in ...
0
votes
1answer
45 views
xcrun: error: developer tools not installed error during valgrind installation
I'm trying to install valgrind on my Mac (10.6.8). I've downloaded the latest valgrind version, valgrind-3.8.1, unzip it and ./configure works fine. When I tried make, got this error message:
xcrun: ...
1
vote
1answer
76 views
Mouse position/control in Terminal, OSX
On Windows, you can get the mouse position from an application running in the Terminal (or command prompt, as it's called there) by using GetCursorPos(), and even simulate mouse clicks and movements ...
0
votes
1answer
50 views
Using OSX Leaks for C Programs on the Command Line?
Can anyone give me any simple syntax for running OSX's leaks tool for detecting memory leaks in a compiled C program? I'm on 10.8, so I'm running into serious compatibility issues with valgrind.
...
2
votes
2answers
86 views
Why doesn't C print to shell until newline?
In C, sometimes my output will not get printed to Terminal until I print the newline character \n. For example:
int main()
{
printf("Hello, World");
printf("\n");
return 0;
}
The Hello ...



