Tagged Questions

Darwin Streaming Server (DSS), is an open source streaming server sharing its core with Apple’s QuickTime Streaming Server.

learn more… | top users | synonyms

9
votes
2answers
315 views

How can I install a DYLD loader command that is not explicitly supported by ld?

On Mac OS X, binary executables in the DYLD format contain "loader commands" that instruct the library loading system how to handle the contents of the file. In particular, the loader command instruct ...
8
votes
1answer
680 views

An objcopy equivalent for Mac / iPhone?

I would like to rename symbols inside object files (.o) with something that would be the Mac equivalent of binutils' objcopy --redefine-syms tool. I found no arm-apple-darwin10-objcopy. I tried the ...
6
votes
4answers
3k views

Determine Process Info Programmatically in Darwin/OSX

I have a class with the following member functions: /// caller pid virtual pid_t Pid() const = 0; /// physical memory size in KB virtual uint64_t Size() const = 0; /// resident memory for this ...
4
votes
1answer
212 views

Why isn't Darwin's strtod thread safe?

The following test always produces failures or bus errors for me on my Intel Mac Mini. Compiler: uname -a: Darwin vogon13 9.8.0 Darwin Kernel Version 9.8.0: Wed Jul 15 16:55:01 PDT 2009; ...
4
votes
1answer
165 views

How do I allocate memory buffers which may be reclaimed by the OS for caching in a Mac OS X kernel extension?

Based on documentation and xnu source I've read, I understand that Mac OS X caches file I/O using the Unified Buffer Cache (UBC). The UBC grows as big as it can based on available RAM, but UBC pages ...
3
votes
1answer
2k views

Steps to compile darwin for arm on ubuntu gcc

Has anyone got the steps to compile darwin libraries on gcc for arm on ubuntu?
3
votes
5answers
5k views

OSX 10.5 Leopard Symbol Mangling with $non_lazy_ptr

Why does Leopard mangle some symbols with $non_lazy_ptr? More importantly what is the best method to fix undefined symbol errors because a symbol has been mangled with $non_lazy_ptr?
2
votes
1answer
42 views

Porting a kernel to a different architecture?

I want to port the xnu kernel to the ARM architecture, with the ultimate goal of being able to run a full kernel inside Qemu. While I do realise that this is a very difficult task, I still want to ...
2
votes
1answer
533 views

How to get Android to play a high quality RTSP stream smoothly?

Does anybody have any luck streaming a high quality video (over 1000kbps) to Android through RTSP? We currently have low quality video streams (around 200kbps) that work wonderfully over 3G. Now we ...
2
votes
1answer
385 views

Get Device Memory Xcode

I really need to know of a way to get the current device’s: Active Memory Inactive Memory Wired Memory Free Memory Total Memory Any information, code or anything is helpful. Thanks in advance.
2
votes
1answer
362 views

Handling mach exceptions in 64bit OS X application

I have been able to register my own mach port to capture mach exceptions in my applications and it works beautifully when I target 32 bit. However when I target 64 bit, my exception handler ...
2
votes
1answer
214 views

Looking for the Mach-O loader source code in the Darwin sources

As I understand it, Mach-O should be part of the Darwin open source packages. Could someone please help me locate the loader? I've no idea where it is and where to download that code from. Any help ...
2
votes
1answer
287 views

Does operator new allocate on THREAD heap?

My problem seems to be this: heap data allocated by one thread (that later dies) seems to die as well. As so: Thread X: starts Thread Y: starts Thread X: ptr = new some bytes Thread X: dies Thread ...
2
votes
2answers
589 views

OSX/Darwin unresolved symbols when linking functions from <math.h>

I'm in the process of porting a large'ish (~1M LOC) project from a Window/Visual Studio environment to other platforms, the first of which happens to be Mac OS X. Originally the project was ...
2
votes
4answers
1k views

How to REALLY strip a binary in MacOs

MacOs 10.6, if I have a file "unwanted.c" which contains: class secret_thing { public: secret_thing() {} void revealing_method_name() {} }; main() { secret_thing obj; ...
2
votes
3answers
514 views

How can I pre-authorize authopen?

I'm using authopen inside one of my programs to modify files owned by root. As can be seen in the screenshot below authopen asks for a admin password. What I'd like to achieve is that the dialog shows ...
2
votes
2answers
1k views

Java OS X Dock Menu

Is it possible to add items to the applications dock menu? EDIT: I think i miss phrased the question, i am not looking for a way to add an icon to the dock. what i am looking for is, when you right ...
2
votes
5answers
668 views

Why does lseek return 0?

lseek() is supposed to return the position of the file descriptor. The documentation says: Upon successful completion, lseek() returns the resulting offset location as measured in bytes from ...
2
votes
6answers
6k views

Opensource Streaming Server application?

I am looking for opensource Streaming server. I have played around VLS/VLC before. Have any of you used Darwin from Apple? Are there any other options available?
1
vote
0answers
545 views

Can't compile QEMU on Mac OS X; says something about a previous declaration of uint16

When I try to compile QEMU on Mac OS X (I'm on Lion, but it happened on Snow Leopard as well) it gives me an error message about uint16. You can find the full output at this link, as it's too long to ...
1
vote
1answer
121 views

ffmpeg server vs darwin stream server

I am looking for video stream server for mobile,and find dss and mfpeg server. is anyone know the difference between dss and ffmpeg server? which one is recommended? thank you
1
vote
1answer
32 views

SIGPROF on darwin

setitimer + sigprof doesn't work on 64 bit darwin. References: http://openradar.appspot.com/9336975 http://lists.apple.com/archives/Unix-porting/2007/Aug/msg00000.html Given this, what's the ...
1
vote
2answers
44 views

Strange behavior of uniq on darwin shells

I've used 'uniq -d -c file' in many shell scripts on linux machines, and it works. On my MAC (OS X 10.6.7 with developer tools installed) it doesn't seems to work: $ uniq -d -c testfile.txt usage: ...
1
vote
1answer
357 views

Avoid linking in unused symbols when linking against static libs

I'm using the apple gcc to compile a dylib that I'm going to redistribute. For various reasons I'm using some libraries, let's say libz to keep it simple. Since this library is not typically found on ...
1
vote
1answer
304 views

How can I get the USB Port Number in Mac OS X?

I found out one class IORegistryEntry in IOKit. It has APIs to get the values of the properties. I am trying to use this class, but I am not able to compile. I have added IOKit and Kernel ...
1
vote
1answer
174 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
2answers
459 views

Can I find the library that created a named OSMallocTag?

I use the allocations instrument to measure heap usage in my iOS app. I find that a significant amount of memory is allocated in a region with the tag name "Memory Tag 70", and I would like to know ...
1
vote
2answers
947 views

ARM Darwin assembly — looking for system calls (tutorial perhaps)

So I took up assembly programming. It's quite simple on my Ubuntu box: using NASMamd GNU ld, I were able to write more or less complicated HelloWorld-style programs in half an hour. But when it comes ...
1
vote
0answers
65 views

Which mode is XNU (OS X kernel) K32 in?

I know XNU K32 is running in 32-bit. But which 32-bit mode is it in, protect-mode or IA32e-compatibility-mode? In the protect-mode, the MMU takes 32-bit cr3 and using two-level page directories. In ...
1
vote
2answers
216 views

STLport crash (race condition, Darwin only?)

When I run STLport on Darwin I get a strange crash. (Haven't seen it anywhere else than on Mac, but exactly same thing crash on both i686 and PowerPC.) This is what it looks like in gdb: Program ...
1
vote
1answer
718 views

EADDRNOTAVAIL when binding 127.0.0.1 on localhost?

I'm getting errno==49 (EADDRNOTAVAIL) when trying to UDP-bind() to 127.0.0.1:47346 running Mac OS X on a G5 (big endian PowerPC). Is there something preventing me from doing so? I've tried other ...
1
vote
1answer
487 views

How does stat() work?

stattest.c: // compile: gcc -o stattest stattest.c #include <stdio.h> #include <sys/stat.h> int main(int argc, char *argv[]) { struct stat stats; stat(argv[1], &stats); ...
0
votes
2answers
30 views

Error when compiling gdb on Mac OSX

I am attempting to compile GDB 7.4 (the version that is on the gdb website) under Mac OSX and I receive the following error: mach-o.c: In function 'bfd_mach_o_header_p': mach-o.c.2978: warning: ...
0
votes
1answer
103 views

how to make RTSP request in html5 or in javascript?

How to make request "rtsp://localhost:554/sample_100kbit.mp4"? (in HTML5 or Javascript) I want to access video streaming data which source is present on Darwin server
0
votes
1answer
13 views

Is there any way to encrypt video file in Darwin server? [closed]

Is there any way to encrypt video file(.mp4) in Darwin server?
0
votes
2answers
102 views

What are the correct UNIX-style permissions for the /bin folder in Mac OSX Lion (10.7) [closed]

I know, I'm a clutz. I accidentally ran '$chmod 777 /bin' as a sudoer in mac terminal, and can't figure out what the actual permissions were before the change. I assume it's the same as the sbin ...
0
votes
0answers
25 views

Rename files on Darwin server from java

I have a requirement in which I need to connect to server which has Darwin Kernel and need to rename files in certain folders. The server has FTP turned on. The application is hosted on a different ...
0
votes
1answer
35 views

What is x86_thread_state64_t & thread_act_t?

I was looking into source code of StarRuntime and I came across two terms x86_thread_state64_t & thread_act_t. I tried to Google it but there is not much documentation. I see it being used ...
0
votes
0answers
47 views

How to provide authentication for RTSP client using LDAP

How can we provide LDAP authentication to RTSP client. I am using Darwin streaming server. or please let me know alternative way to provide authentication to rtsp clients if any. Thanks and regards, ...
0
votes
1answer
75 views

Darwin Streaming Server - Adaptive Bitrate?

Can anyone provide any direction or links on how to use the adaptive bitrate feature that DSS says it supports? According to the release notes for v6.0.3: 3GPP Release 6 bit rate adaptation support ...
0
votes
0answers
86 views

Building CGAL for 32 bit architecture — or Cinder for 64-bit [closed]

Has anyone ever tried to build CGAL for i386 (32 bit) architecture? My issue is that I'm trying to get CGAL to work with Cinder, which is by default compiled for i386. Alternately I could try to get ...
0
votes
2answers
240 views

passing compiler flags to boost libraries (such as Thread) which require compilation

So I know that the boost libraries are primarily header-only but there are a few which require compilation, for example Boost.Thread. In Darwin, how do I compile these and pass the -m32 flag so they ...
0
votes
0answers
29 views

Working with DRAM

I have installed DRAM (customized version of Apple Darwin Streaming server). This enables to authorize the users (using MySQL) before they can view the Movie file. Here is the only documentation ...
0
votes
1answer
66 views

darwin not able to stream uploaded 3gp files from rails

I am trying to upload 3gp files into my rails application on ami instance using paperclip. I then move that 3gp file to darwing streaming server folder to stream it. To have a better identification of ...
0
votes
1answer
24 views

Apple opensource browsing

I am browsing http://opensource.apple.com/source/launchd/ and there is the list of subdirectories with files launchd-[numbers]. What does [numbers] mean? How to know the version of launchd is used ...
0
votes
1answer
269 views

task_for_pid always returns (os/kern) failure on darwin in C

For some reasons I cannot get anything to come out of task_for_pid() I can't find very much information but what I am trying to do it attach to another process and search its memory, but every time I ...
0
votes
0answers
199 views

How do I update libc and libstdc++ on OS X 10.5?

I am using a Mac Mini as a build agent and I need to upgrade the standard libraries. I can't find either libc or libstdc++ on MacPorts.
0
votes
1answer
77 views

Equivalent to RUSAGE_THREAD darwin?

I need to measure the cpu usage of individual threads on darwin. On linux I use getrusage(RUSAGE_THREAD, ...) but it's not available on darwin.
0
votes
1answer
227 views

Problems with Streaming Videos Darwin Streaming Server

I am having problems with Darwin streaming server. I have successfully installed it and I have also successfully used it to stream the compatible samples to my android phone. I was very happy at this ...
0
votes
0answers
101 views

Warning when running Darwin Streaming Server

I followed instruction here: http://www.codeproject.com/KB/audio-video/DarwinSS_on_Linux.aspx starting with the sample project provided. it compiles perfectly, and darwin reports: 2011-04-02 ...

1 2