Universal Clipboard scope

2016-07-11 Thread Julian Hsiao
Hi, Does the new Universal Clipboard feature share all the standard pasteboards (NSGeneralPboard, NSRulerPboard, etc.)? What about private pasteboards created with pasteboardWithName:, pasteboardWithUniqueName:, etc. methods? Thanks. Julian Hsiao ___

Re: Hello. Is there a way to stop Apple CrashReporter from collecting crashes of my process?

2016-07-11 Thread Ken Thomases
On Jul 11, 2016, at 11:44 AM, Alastair Houghton wrote: > > On 11 Jul 2016, at 15:04, Motti Shneor wrote: >> >> I develop a global daemon, maintained by launchd. Obviously It cannot be >> distributed in the Mac App Store. To collect crash-reports from customers, I >> integrated a mainstream 3

Re: Hello. Is there a way to stop Apple CrashReporter from collecting crashes of my process?

2016-07-11 Thread Motti Shneor
Thank you very much Alastair, that is exactly the hint I was looking for. Indeed this isn’t a Cocoa question per se, but it affects any non-app-store Cocoa-App. The CrashReporter echo-system isn’t Darwin either… It is related to many things - LLDB Xcode, deployment, Darwin, ABI, App-Store and

Re: Hello. Is there a way to stop Apple CrashReporter from collecting crashes of my process?

2016-07-11 Thread Alastair Houghton
On 11 Jul 2016, at 15:04, Motti Shneor wrote: > > I develop a global daemon, maintained by launchd. Obviously It cannot be > distributed in the Mac App Store. To collect crash-reports from customers, I > integrated a mainstream 3rd party crash reporter library (PLCrashReporter). I > collect cr

Re: Hello. Is there a way to stop Apple CrashReporter from collecting crashes of my process?

2016-07-11 Thread Doug Hill
Maybe you could strip symbols from your binary? This would at least stop private info from being shown to the user. You mgiht also remove any logging statements from your shipping binary if that also exposes private information. Doug Hill > On Jul 11, 2016, at 7:04 AM, Motti Shneor wrote: > >

Hello. Is there a way to stop Apple CrashReporter from collecting crashes of my process?

2016-07-11 Thread Motti Shneor
Hi. I develop a global daemon, maintained by launchd. Obviously It cannot be distributed in the Mac App Store. To collect crash-reports from customers, I integrated a mainstream 3rd party crash reporter library (PLCrashReporter). I collect crashes of our daemon, and send them for analysis, and

Re: Threads

2016-07-11 Thread dangerwillrobinsondanger
Just be sure to write tests that prove it does what you want it to do. ;) Sent from my iPhone > On Jul 11, 2016, at 6:18 PM, Gerriet M. Denkmann wrote: > > >> On 11 Jul 2016, at 16:00, Alastair Houghton >> wrote: >> >> On 11 Jul 2016, at 06:35, Gerriet M. Denkmann wrote: >>> >>> I have a

Re: Threads

2016-07-11 Thread Gerriet M. Denkmann
> On 11 Jul 2016, at 16:00, Alastair Houghton > wrote: > > On 11 Jul 2016, at 06:35, Gerriet M. Denkmann wrote: >> >> I have a subclass of NSThread (called MyThread), which runs a RunLoop in >> main. >> When it gets cancelled, it leaves the RunLoop and main will exit. > > One further though

Re: Threads

2016-07-11 Thread Alastair Houghton
On 11 Jul 2016, at 06:35, Gerriet M. Denkmann wrote: > > I have a subclass of NSThread (called MyThread), which runs a RunLoop in main. > When it gets cancelled, it leaves the RunLoop and main will exit. One further thought on this: it looks like you might be duplicating the functionality of NS

Re: Threads

2016-07-11 Thread Alastair Houghton
On 11 Jul 2016, at 06:35, Gerriet M. Denkmann wrote: > > I have a subclass of NSThread (called MyThread), which runs a RunLoop in main. > When it gets cancelled, it leaves the RunLoop and main will exit. > > Some other thread does: > > if ( myThread.isCancelled ) > { > // probably th