Skip to content

Commit

Permalink
Fixes bug 716345, Add stable NSS and NSPR API to the prefix skiplist
Browse files Browse the repository at this point in the history
  • Loading branch information
lauraxt committed Mar 21, 2012
1 parent bb664db commit f540faa
Showing 1 changed file with 38 additions and 6 deletions.
44 changes: 38 additions & 6 deletions scripts/config/processorconfig.py.dist
Expand Up @@ -147,7 +147,6 @@ prefixSignatureRegEx = '|'.join([
'strchr',
'strstr',
'strlen',
'PL_strlen',
'strcmp',
'strcpy',
'strncpy',
Expand All @@ -168,7 +167,6 @@ prefixSignatureRegEx = '|'.join([
'libobjc.A.dylib@0x1568.',
'objc_msgSend',
'_purecall',
'PL_DHashTableOperate',
'EtwEventEnabled',
'RtlpFreeHandleForAtom',
'RtlpDeCommitFreeBlock',
Expand All @@ -177,7 +175,6 @@ prefixSignatureRegEx = '|'.join([
'RtlQueryPerformanceFrequency',
'RtlpWaitOnCriticalSection',
'RtlpWaitForCriticalSection',
'_PR_MD_ATOMIC_(INC|DEC)REMENT',
'nsCOMPtr.*',
'nsRefPtr.*',
'operator new\([^,\)]+\)',
Expand All @@ -193,16 +190,13 @@ prefixSignatureRegEx = '|'.join([
'NtUserMessageCall',
'mozalloc_abort.*',
'NS_DebugBreak_P.*',
'PR_AtomicIncrement',
'PR_AtomicDecrement',
'moz_xmalloc',
'__libc_android_abort',
'mozilla::ipc::RPCChannel::EnteredCxxStack',
'mozilla::ipc::RPCChannel::CxxStackFrame::CxxStackFrame',
'mozilla::ipc::RPCChannel::Send',
'mozilla::ipc::RPCChannel::Call',
'RtlDeleteCriticalSection',
'PR_DestroyLock',
'.*abort',
'_ZdaPvRKSt9nothrow_t\"',
'__swrite',
Expand Down Expand Up @@ -240,6 +234,44 @@ prefixSignatureRegEx = '|'.join([
'pthread_mutex_lock',
'mozilla::AndroidBridge::AutoLocalJNIFrame::~AutoLocalJNIFrame',
'__wrap_realloc',
'PL_.*',
'PR_.*',
'_PR_.*',
'LL_.*',
'_MD_.*',
'PORT_.*',
'port_.*',
'SEC_.*Item',
'SECKEY_.*',
'seckey_.*',
'CERT_.*',
'cert_.*',
'SSL_.*',
'ssl_.*',
'ssl3_.*',
'SocketClose',
'SocketRead',
'SocketWrite',
'SocketAvailable',
'SocketAvailable64',
'SocketSync',
'SocketWritev',
'SocketConnect',
'SocketAccept',
'SocketBind',
'SocketListen',
'SocketShutdown',
'SocketRecv',
'SocketSend',
'SocketPoll',
'SocketAcceptRead',
'SocketTransmitFile',
'SocketGetName',
'SocketGetPeerName',
'send',
'recv',
'WSARecv.*',
'WSASend.*',
])

signaturesWithLineNumbersRegEx = cm.Option()
Expand Down

0 comments on commit f540faa

Please sign in to comment.