~ubuntu-branches/ubuntu/maverick/libtorrent-rasterbar/maverick

« back to all changes in this revision

Viewing changes to docs/write_disk_buffers.dot

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Sauthier
  • Date: 2010-08-10 12:59:37 UTC
  • mfrom: (1.3.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20100810125937-jbcmmf17y8yo9hgz
Tags: 0.15.0-0ubuntu1
* New upstream version.
* debian/patches/100_fix_html_docs.patch: refreshed.
* debian/control: bump up standards-version to 3.9.1 (no changes).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
digraph downloading {
 
2
        label=""
 
3
        node [shape=box];
 
4
 
 
5
        subgraph user_space {
 
6
                rank=same;
 
7
                "receive buffer" -> "plain text buffer" [label="decrypt in-place (no copy)" style=dashed];
 
8
                "plain text buffer" -> "disk cache" [label="move buffer reference (no copy)" style=dashed]
 
9
        }
 
10
 
 
11
        subgraph kernel {
 
12
                rank=same;
 
13
                "socket kernel buffer";
 
14
                "kernel page cache"
 
15
        }
 
16
 
 
17
        "socket kernel buffer" -> "receive buffer" [label="read() on socket (copy)"];
 
18
        "disk cache" -> "kernel page cache" [label="write() to file (copy)"]
 
19
}
 
20