[llvm-commits] [www-pubs] r118855 - in /www-pubs/trunk: 2010-10-HotDep-CrashRecovery.html 2010-10-HotDep-CrashRecovery.pdf pubs.js
Chris Lattner
sabre at nondot.org
Thu Nov 11 15:28:11 PST 2010
Author: lattner
Date: Thu Nov 11 17:28:11 2010
New Revision: 118855
URL: http://llvm.org/viewvc/llvm-project?rev=118855&view=rev
Log:
add another new paper
Added:
www-pubs/trunk/2010-10-HotDep-CrashRecovery.html
www-pubs/trunk/2010-10-HotDep-CrashRecovery.pdf (with props)
Modified:
www-pubs/trunk/pubs.js
Added: www-pubs/trunk/2010-10-HotDep-CrashRecovery.html
URL: http://llvm.org/viewvc/llvm-project/www-pubs/trunk/2010-10-HotDep-CrashRecovery.html?rev=118855&view=auto
==============================================================================
--- www-pubs/trunk/2010-10-HotDep-CrashRecovery.html (added)
+++ www-pubs/trunk/2010-10-HotDep-CrashRecovery.html Thu Nov 11 17:28:11 2010
@@ -0,0 +1,58 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <link rel="stylesheet" href="../llvm.css" type="text/css" media="screen">
+ <title>We Crashed, Now What?</title>
+</head>
+<body>
+
+<div class="pub_title">
+ We Crashed, Now What?
+</div>
+<div class="pub_author">
+ Cristiano Giuffrida, Lorenzo Cavallaro, and Andrew S. Tanenbaum
+</div>
+
+<h2>Abstract:</h2>
+<blockquote>
+<p>
+We present an in-depth analysis of the crash-recovery
+problem and propose a novel approach to recover from
+otherwise fatal operating system (OS) crashes. We show
+how an unconventional, but careful, OS design, aided by
+automatic compiler-based code instrumentation, offers a
+practical solution towards the survivability of the entire
+system. Current results are encouraging and show that
+our approach is able to recover even the most critical OS
+subsystems without exposing the failure to user applications
+or hampering the scalability of the system.
+</p>
+</blockquote>
+
+<h2>Published:</h2>
+<blockquote>
+ "We Crashed, Now What?"<br>
+ Cristiano Giuffrida, Lorenzo Cavallaro, and Andrew S. Tanenbaum<br>
+<i>In the Proceedings of the 6th Workshop on Hot Topics in System Dependability
+ (HotDep '10),</i>
+October 3, 2010, Vancouver, BC, Canada
+</blockquote>
+
+<h2>Download:</h2>
+<h3>Paper:</h3>
+<ul>
+ <li><a href="2010-10-HotDep-CrashRecovery.pdf">
+ We Crashed, Now What?
+ </a> (PDF)</li>
+</ul>
+
+<!-- *********************************************************************** -->
+<hr>
+ <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
+ src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
+ <a href="http://validator.w3.org/check/referer"><img
+ src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" /></a>
+
+</body>
+</html>
Added: www-pubs/trunk/2010-10-HotDep-CrashRecovery.pdf
URL: http://llvm.org/viewvc/llvm-project/www-pubs/trunk/2010-10-HotDep-CrashRecovery.pdf?rev=118855&view=auto
==============================================================================
Binary file - no diff available.
Propchange: www-pubs/trunk/2010-10-HotDep-CrashRecovery.pdf
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Modified: www-pubs/trunk/pubs.js
URL: http://llvm.org/viewvc/llvm-project/www-pubs/trunk/pubs.js?rev=118855&r1=118854&r2=118855&view=diff
==============================================================================
--- www-pubs/trunk/pubs.js (original)
+++ www-pubs/trunk/pubs.js Thu Nov 11 17:28:11 2010
@@ -1,6 +1,15 @@
// The array should be sorted reverse-chronologically, and will be displayed on
// the page in the order listed.
-var PUBS = [
+var PUBS =
+[{ url: "2010-10-HotDep-CrashRecovery.html",
+ title: "We Crashed, Now What?",
+published: "Proc. of the 6th Workshop on Hot Topics in System Dependability (HotDep '10)",
+location: "Vancouver, BC, Canada",
+author: "Cristiano Giuffrida, Lorenzo Cavallaro, and Andrew S. Tanenbaum",
+ month: 10,
+ year: 2010
+ },
+
{url: "2010-09-HASKELLSYM-LLVM-GHC.html",
title: "An LLVM Backend for GHC",
published: "ACM SIGPLAN Haskell Symposium 2010",
More information about the llvm-commits
mailing list