A simple guide to install PyQt5 on Mac OS X 10.9 (Maverick) and use python 3.4 on a virtualenv.
- xcode 5.1.1
- python 3.4.0
- Qt libraries 5.2.1
/// === DESCRIPTION === | |
/// This is a naive implementation of a registry for Actix Actors that | |
/// implement a SyncContext. Using it you can retreive an address for | |
/// any actor registered with it from any point in your program. | |
/// | |
/// === LICENSE === | |
/// Copyright 2019 Stanko K.R. <[email protected]> | |
/// | |
/// Permission is hereby granted, free of charge, to any person | |
/// obtaining a copy of this software and associated documentation |
#!/usr/sbin/dtrace -Cs | |
#pragma D option quiet | |
fbt::__mac_execve:entry, fbt::posix_spawn:entry | |
{ | |
self->want_malloc = 1; | |
} | |
/* | |
* First _MALLOC call inside execve/posix_spawn allocates memory |