(Firstly, apologies if the first part of this answer seems patronising! I write it because you mentioned 'how to write concurrent systems'.)
The building of a concurrent system starts first with understanding the key concepts involved. Tool for diagramming/understanding come later, and can definitely help -- but are useless without the former.
I've recently read this book which is maybe worth a look: http://shop.oreilly.com/product/9780596521547.do
Although it's aimed in part at multi-processor systems, a lot of the key concepts apply equally to merely concurrent systems (and not necessarily parallel systems). (Concurrent = multiple things progressing at once, even if it's just one processor actually handling them via context switching.)
As a solid example of fundamental knowledge, it's useful to know what the actual requirements are for deadlock to occur in your multi-threaded program. (See this Wikipedia section.)
Diagramming
A popular choice seems to be sequence diagrams with actors as multiple entry points for different threads.
Personally I quite like using an informal diagram I call a Thread/Location diagram. It's more a high-level view of what is going on and what you need to pay attention to, rather than low level details on locking etc. It models concurrent execution paths in the code -- once you already have a design -- and is useful for pointing up shared data (where you might need locking or encounter problems). I find it useful for sketching concurrent design ideas as well as using for an overview of the final/current design.
Here's a brief description of making a Thread/Location diagram:
You draw a table (faintly) on a piece of paper. Across the top of the table, title each column with a thread of execution. So for example, you might have just two columns: "UI thread" and "Background image fetching thread".
Down the left of the table, label each row with a location of interest in your code. A 'location' might be individual classes, or package names, or even something quite course like "Java code" versus "JNI native code".
So, as per my example above, you'd end up with a diagram like this:
| UI thread | Background image |
| | fetching thread |
----------------------------------------------------------
| | |
| | |
Java code | | |
| | |
| | |
----------------------------------------------------------
| | |
| | |
Native code | | |
| | |
| | |
----------------------------------------------------------
So columns on the page indicate the same thread, and rows indicate same location in code.
Now you can fill in the diagram with crucial thread activity. I use the following shapes/meanings:
Oval with label in middle -- some part of the code, e.g. a method name. For example, you might have an oval containing "handleTouchEvent" in the top left-box (i.e. it's in the UI thread, and it's a method in the Java code).
Solid directional line - synchronous (blocking) call on same thread. Can connect ovals (method executions) as they call each other. Note a solid line usually leads to something in the same column (thread).
Dashed directional line - asynchronous (non-blocking) call. Can connect ovals (method executions) to indicate that part of the code is calling asynchronously (non-blocking). If the dashed line crosses from one column to another (it usually will), it's telling you that you've triggered the calling of a method in another thread.
Diamond with label - indicates shared data. Reading and writing to this data is indicated by double stroked line, with arrow directions (indicating data flow direction - read/write/both), connecting the diamond to ovals (parts of the code).
This diagram can model different threads on the same page (which is mostly the point).
I find this a useful way to quickly note what's going on in a design, and also to point up where the crucial shared data is.