Keybase proof
I hereby claim:
- I am impl on github.
- I am impl (https://keybase.io/impl) on keybase.
- I have a public key whose fingerprint is F5B2 BE1B 9AAD 98FE 2916 5597 3665 FFF7 9D38 7BAA
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
CONFIG_YAFFS_FS=y | |
CONFIG_YAFFS_YAFFS1=y | |
CONFIG_YAFFS_9BYTE_TAGS=y | |
CONFIG_YAFFS_YAFFS2=y | |
CONFIG_YAFFS_AUTO_YAFFS2=y | |
# CONFIG_YAFFS_DISABLE_LAZY_LOAD is not set | |
# CONFIG_YAFFS_DISABLE_WIDE_TNODES is not set | |
# CONFIG_YAFFS_ALWAYS_CHECK_CHUNK_ERASED is not set | |
CONFIG_YAFFS_SHORT_NAMES_IN_RAM=y |
/* This file incorporates portions of JBoss Weld, the JSR-299 reference | |
* implementation. | |
* | |
* JBoss, Home of Professional Open Source | |
* Copyright 2008, Red Hat, Inc., and individual contributors | |
* by the @authors tag. See the copyright.txt in the distribution for a | |
* full listing of individual contributors. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. |
SELECT | |
l1.type, | |
s1.sid blocker_sid, s1.machine blocker_machine, s1.sql_id blocker_sql_id, | |
s2.sid blocked_sid, s2.machine blocked_machine, s2.sql_id blocked_sql_id, | |
obj.object_type, obj.object_name | |
FROM v$lock l1 JOIN v$lock l2 ON (l1.id1 = l2.id1 AND l1.id2 = l2.id2) | |
JOIN v$session s1 ON (s1.sid = l1.sid) JOIN v$session s2 on (s2.sid = l2.sid) | |
LEFT JOIN dba_objects obj ON (obj.object_id = l1.id1) | |
WHERE l1.lmode > 1 AND l2.request > 1; |