Displaying 3 results from an estimated 3 matches for "tbase".
Did you mean:
base
2013 Aug 16
2
Maildirmake equiv?
...ot;/usr/local/bin/maildirmake"
YEAR=`/usr/local/bin/gdate -d "last month" '+%Y'`
echo "The Year is $YEAR..."
OIFS=$IFS
IFS="
"
for I in `find $MDIR -maxdepth 1 -mindepth 1 -type d| egrep -v "[0-9][0-9][0-9][0-9]"`; do
MYDIR="${I}"
TBASE=`basename $MYDIR`
# if [ ! $TBASE == "Maildir" ]; then
TDIR=`dirname $MYDIR`
TARGET="${TDIR}/.zz${TBASE}.${YEAR}"
# echo "$MYDIR $TARGET"
if [ -d "$MYDIR/cur" ]; then
echo -n "Processing ${MYDIR} => ${TARGET}..."
if...
2015 Aug 25
4
GPL Software
...keymgr_get_and_lock_processwide_ptr
as specified in some Apple's program source.
Do not do that. It will just never work, it returns always zero.
Then I tried to use what I use on Linux:
register_table_bases with
void __register_frame_info_table_bases (void *begin, struct object *ob,
void *tbase, void *dbase);
This function requires a different format than register_frame_info,
quite difficult to generate.
Do not bother, it doesn't work, even if it is advertised as "working in
OS X now".
Then I tried to use
register_frame_info with yet another format. Didn't work eithe...
2015 Aug 25
5
GPL Software
Hi
On Mon Jul 27 11:29:44 CDT 2015 I posted a question here about the way
llvm implements exceptions in Apple's OS X.
Since then I have received ZERO answers.
I have solved the problem myself by "disassembling" the messy source
code available.
I thank everyone for proving me (yet another time) that
THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH
YOU.