From 049c55df4761f7a0dd19b30ce4d776be122d7ca0 Mon Sep 17 00:00:00 2001 From: Tobias Stoeckmann Date: Thu, 19 Jun 2025 18:54:54 +0200 Subject: [PATCH] libkmod/README: fix grammar Co-authored-by: Emil Velikov Signed-off-by: Tobias Stoeckmann Link: https://github.com/kmod-project/kmod/pull/378 Signed-off-by: Lucas De Marchi --- libkmod/README | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/libkmod/README b/libkmod/README index 3e1c8dcd..f71696f5 100644 --- a/libkmod/README +++ b/libkmod/README @@ -3,18 +3,19 @@ libkmod - linux kernel module handling library ABSTRACT ======== -libkmod was created to allow programs to easily insert, remove and -list modules, also checking its properties, dependencies and aliases. +libkmod was created to allow programs to easily insert, remove and list modules, +also checking their properties, dependencies and aliases. -there is no shared/global context information and it can be used by -multiple sites on a single program, also being able to be used from -threads, although it's not thread safe (you must lock explicitly). +The library does not keep a shared/global context information, thus it can be +used by multiple sites on a single program. One is able to use libkmod from +threads, although the user must lock explicitly, since the library is not thread +safe. OVERVIEW ======== -Every user should create and manage it's own library context with: +All users should create and manage their own library context with: struct kmod_ctx *ctx = kmod_new(kernel_dirname); kmod_unref(ctx); -- 2.47.3