search for: copy_a_buff

Displaying 1 result from an estimated 1 matches for "copy_a_buff".

Did you mean: copy_a_buffer
2010 Jul 02
1
Progress bars
...e busy state should be made thread safe. Note that we already implement thread safety using weak pthread function calls in libguestfs (via gnulib), so this doesn't add any new dependencies. Daemon changes -------------- Long running calls tend to be of two forms: while (n < size) { copy_a_buffer (); n += size_copied; } or: command ("long_running_external_command"); The first form can be changed easily: while (n < size) { copy_a_buffer (); n += size_copied; notify_progress (n, size); } The 'notify_progress' function can be called as often...