Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/udebug/udebug_ops.c

    r41df2827 ra074b4f  
    209209
    210210                mutex_lock(&t->udebug.lock);
    211                 if ((t->flags & THREAD_FLAG_USPACE) != 0)
     211                if ((t->flags & THREAD_FLAG_USPACE) != 0) {
    212212                        t->udebug.active = true;
    213                 mutex_unlock(&t->udebug.lock);
     213                        mutex_unlock(&t->udebug.lock);
     214                        condvar_broadcast(&t->udebug.active_cv);
     215                } else {
     216                        mutex_unlock(&t->udebug.lock);
     217                }
    214218        }
    215219
     
    355359 *
    356360 * If the sequence is longer than @a buf_size bytes, only as much hashes
    357  * as can fit are copied. The number of thread hashes copied is stored
    358  * in @a n.
     361 * as can fit are copied. The number of bytes copied is stored in @a stored.
     362 * The total number of thread bytes that could have been saved had there been
     363 * enough space is stored in @a needed.
    359364 *
    360365 * The rationale for having @a buf_size is that this function is only
     
    364369 * @param buffer        The buffer for storing thread hashes.
    365370 * @param buf_size      Buffer size in bytes.
    366  * @param n             The actual number of hashes copied will be stored here.
    367  */
    368 int udebug_thread_read(void **buffer, size_t buf_size, size_t *n)
     371 * @param stored        The actual number of bytes copied will be stored here.
     372 * @param needed        Total number of hashes that could have been saved.
     373 */
     374int udebug_thread_read(void **buffer, size_t buf_size, size_t *stored,
     375    size_t *needed)
    369376{
    370377        thread_t *t;
    371378        link_t *cur;
    372379        unative_t tid;
    373         unsigned copied_ids;
     380        size_t copied_ids;
     381        size_t extra_ids;
    374382        ipl_t ipl;
    375383        unative_t *id_buffer;
     
    380388
    381389        /* Allocate a buffer to hold thread IDs */
    382         id_buffer = malloc(buf_size, 0);
     390        id_buffer = malloc(buf_size + 1, 0);
    383391
    384392        mutex_lock(&TASK->udebug.lock);
     
    396404        max_ids = buf_size / sizeof(unative_t);
    397405        copied_ids = 0;
     406        extra_ids = 0;
    398407
    399408        /* FIXME: make sure the thread isn't past debug shutdown... */
    400409        for (cur = TASK->th_head.next; cur != &TASK->th_head; cur = cur->next) {
    401                 /* Do not write past end of buffer */
    402                 if (copied_ids >= max_ids) break;
    403 
    404410                t = list_get_instance(cur, thread_t, th_link);
    405411
     
    409415
    410416                /* Not interested in kernel threads. */
    411                 if ((flags & THREAD_FLAG_USPACE) != 0) {
     417                if ((flags & THREAD_FLAG_USPACE) == 0)
     418                        continue;
     419
     420                if (copied_ids < max_ids) {
    412421                        /* Using thread struct pointer as identification hash */
    413422                        tid = (unative_t) t;
    414423                        id_buffer[copied_ids++] = tid;
     424                } else {
     425                        extra_ids++;
    415426                }
    416427        }
     
    422433
    423434        *buffer = id_buffer;
    424         *n = copied_ids * sizeof(unative_t);
     435        *stored = copied_ids * sizeof(unative_t);
     436        *needed = (copied_ids + extra_ids) * sizeof(unative_t);
    425437
    426438        return 0;
Note: See TracChangeset for help on using the changeset viewer.