I would like to have two listings, side by side.
They have approximately the same length, therefore I don't care about how it's layed out if one part is longer.
I tried
\begin{minipage}{\textwidth}
\begin{parcolumns}{2}
\colchunk{\begin{lstlisting}[caption=code 1,frame=tlrb]{Name}
void code()
{
}
\end{lstlisting}}
\colchunk{\begin{lstlisting}[caption=code 2,frame=tlrb]{Name}
void code()
{
}
\end{lstlisting}}
\colplacechunks
\end{parcolumns}
\end{minipage}
while the border of the listings end up in chunks as follows:

Btw I'm using the texlive-package & pdflatex on Ubuntu and the document class is
\documentclass[
a4paper,
10pt,
twoside,
openright,
notitlepage,
parskip=half,
]{scrreprt}
Any idea is appreciated.

listingshas an option for spreading a listing over two columns. It is not exactly what the OP asks for, but noted here for posterity. – 0 _ Feb 02 '15 at 08:01\begin{lstlisting}[t]if you want the twolstlisting'snot to be vertically centered if they are of uneven length. – Chinni Dec 01 '16 at 22:22lstlistingsto be centered top, then you need to use\begin{minipage}[t]– immanis Mar 20 '18 at 13:30