Displaying 2 results from an estimated 2 matches for "bigsky".
2003 Apr 01
1
RODBC, freetds, and MS SQL Server
...ot;select * from
cmp.Medium" has returned the whole table to me but now it only seems like I
get column headers. Any help or advice would be appreciated.
##-------------------------------------------------------------------------------##
> library(RODBC)
> con <- odbcConnect("BIGSKY","***","**********")
> con
RODB Connection 0
Details:
case=nochange
0??????????
> sqlTables(con)
[1] TABLE_QUALIFIER TABLE_OWNER TABLE_NAME TABLE_TYPE
[5] REMARKS
<0 rows> (or 0-length row.names)
> sqlQuery(con,"select * from M...
2018 Jul 16
2
Collect all possible return address and write in a new section
Hi
I try to implement a coarse-grained CFI in LLVM
(CFI = Contorl Flow Integrity)
I want to collect all address after call instructions
address after a call equals to a valid return site in coarse-grained CFI
I want to add a new section
and write all the possible return address in the new section
(and then, add the integrity check)
I have some quetions:
(1)
Which part of LLVM code should