~ubuntu-branches/ubuntu/precise/graphviz/precise-security

« back to all changes in this revision

Viewing changes to rtest/graphs/p4.gv

  • Committer: Bazaar Package Importer
  • Author(s): David Claughton
  • Date: 2010-03-24 22:45:18 UTC
  • mfrom: (1.2.7 upstream) (6.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100324224518-do441tthbqjaqjzd
Tags: 2.26.3-4
Add patch to fix segfault in circo. Backported from upstream snapshot
release.  Thanks to Francis Russell for his work on this.
(Closes: #575255)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
graph G {
 
2
        run -- intr;
 
3
        intr -- runbl;
 
4
        runbl -- run;
 
5
        run -- kernel;
 
6
        /* run -- runmem; */
 
7
        kernel -- zombie
 
8
        kernel -- sleep;
 
9
        kernel -- runmem;
 
10
        sleep -- swap;
 
11
        swap -- runswap;
 
12
        runswap -- new;
 
13
        runswap -- runmem;
 
14
        new -- runmem;
 
15
        sleep -- runmem;
 
16
        zombie -- 1 -- 2 -- 4 -- 5 -- 6 -- 7 -- 8 -- zombie;
 
17
}