Ted's Blog

Happy coding

gdb使用指南(2)

Ted posted @ 2008年9月05日 04:29 in gdb with tags gdb , 3271 阅读

程序环境
==========================
   “环境”包括了一系列的环境变量和它们的值。环境变量一般记录了一些常用的信息,
比如你的用户名,主目录,你的终端型号和你的运行程序的搜索路径。一般你可以在shell
下设置环境变量,然后这些变量被所有你所运行的程序所共享。在调试中,可以设置恰当
的环境变量而不用退出gdb.

`path DIRECTORY'
     在'PATH'环境变量前加入新的内容('PATH'提供了搜索执行文件的路径)。对于gdb和
你的程序来说你也许要设置一些专门的路径。使用':'或空格来分隔。如果DIRECTORY已经
在路径中了,这个操作将会把它移到前面。
     你可以使用串'$cmd'来代表当前路径,如果你用'.'的话,它代表你使用'path'命令
时的路径,gdb将在把DIRECTORY加入搜索路径前用'.'代替当前路径

`show paths'
     显示当前路径变量的设置情况。

`show environment [VARNAME]'
     显示某个环境变量的值。如果你不指明变量名,则gdb会显示所有的变量名和它们的
内容。environment可以被缩写成'env'

`set environment VARNAME [=] VALUE'
     设置某个环境变量的值。不过只对你所调试的程序有效。对gdb本身是不起作用的。
值可以是任何串。如果未指定值,则该变量值将被设为NULL.
看一个例子:
          set env USER = foo
     告诉一个linux程序,当它下一次运行是用户名将是'foo'

`unset environment VARNAME'
     删除某环境变量。

   注意:gdb使用'shell'环境变量所指定的shell来运行你的程序。

工作路径
================================
   当你每次用'run'命令来运行你的程序时,你的程序将继承gdb的
当前工作目录。而gdb的工作目录是从它的父进程继承而来的(一般是
shell)。但你可以自己使用'cd'命令指定工作目录。
   gdb的工作目录就是它去寻找某些文件或信息的途径。
`cd DIRECTORY'
     把gdb的工作目录设为DIRECTORY
`pwd'
     打印输出当前目录。
你程序的输入/输出
===============================
   缺省时,你的程序的输入/输出和gdb的输入/输出使用同一个终端。
gdb在它自己和你的程序之间切换来和你交互,但这会引起混乱。
`info terminal'
     显示你当前所使用的终端的类型信息。
     你可以把你程序的输入/输出重定向。
例如:
     run > outfile
运行你的程序并把你程序的标准输出写入文件outfile中。
   另一个为你程序指定输入/输出的方法是使用'tty'命令,这个命令
接受一个文件名作为参量把这个文件作为以后使用'run'命令的缺省命
令文件。它还重新为子进程设置控制终端。
例如:
     tty /dev/ttyb
指定以后用'run'命令启动的进程使用终端'/dev/ttyb'作为程序的输入
/输出,而且把这个终端设为你进程的控制终端。
   一个清楚的使用'run'命令的重定向将重新设置'tty'所设置的内容
,但不影响控制终端。   当你使用'tty'命令或在'run'命令中对输入
/输出进行重定向时,只有你当前调试的程序的输入/输出被改变了,
并不会影响到别的程序。
调试一个已经运行的程序:
====================================

`attach PROCESS-ID'
     这个命令把一个已经运行的进程(在gdb外启动)连接入gdb,以便
调试。PROCESS-ID是进程号。(UNIX中使用'ps'或'jobs -l'来查看进程)
     'attach'一般不重复。(当你打了一个以上的回车时)
   当然要使用'attach'命令的话,你的操作系统环境必须支持进程。
另外你还要有向此进程发信号的权力。
   当使用'attach'命令时,你应该先使用'file'命令来指定进程所
联系的程序源代码和符号表。   当gdb接到'attach'命令后第一件
事就是停止进程的运行,你可以使用所有gdb的命令来调试一个“连接”
的进程,就象你用'run'命令在gdb中启动它一样。如果你要进程继续运
行,使用'continue'或'c'命令就行了。
`detach'
   当你结束调试后可以使用此命令来断开进程和gdb的连接。(解除gdb
对它的控制)在这个命令执行后进程将继续执行。
   如果你在用'attach'连接一个进程后退出了gdb,或使用'run'命令执
行了另一个进程,这个被'attach'的进程将被kill掉。但缺省时,gdb会
要求你确认你是否要退出或执行一个新的进程。

结束子进程
=========================
`kill'
     Kill命令结束你程序在gdb下开的子进程
     这个命令当你想要调试(检查)一个core dump文件时更有用。gdb在调试过程中
会忽略所有的core dump。
   在一些操作系统上,一个程序当你在上面加了断点以后就不能离开gdb独立运行。
你可以用kill命令来解决这个问题。
   'kill'命令当你想重新编译和连接你的程序时也很有用。因为有些系统不允许修改
正在执行的可执行程序。这样当你再一次使用'run'命令时gdb会知道你的程序已经被改
变了,那么gdb会重新load新的符号。(而且尽量保持你当前的断点设置。
附加的进程信息
==============================
   一些操作系统提供了一个设备目录叫做'/proc'的,供检查进程映象。如果gdb被在这
样的操作系统下运行,你可以使用命令'info proc'来查询进程的信息。('info proc'命
令只在支持'procfs'的SVR4系统上有用。
`info proc'
     显示进程的概要信息。
`info proc mappings'
     报告你进程所能访问的地址范围。
`info proc times'
     你进程和子进程的开始时间,用户时间(user CPU time),和系统CPU时间。
`info proc id'
     报告有关进程id的信息。
`info proc status'
     报告你进程的一般状态信息。如果进程停止了。这个报告还包括停止的原因和收到的
信号。
`info proc all'
     显示上面这些命令返回的所有信息。
对多线程程序的调试
========================================
   一些操作系统中,一个单独的程序可以有一个以上的线程在运行。线程和进程精确的定?
?

?
?
有自己的寄存器,运行时堆栈或许还会有私有内存。
   gdb提供了以下供调试多线程的进程的功能:
   * 自动通告新线程。
   * 'thread THREADNO',一个用来在线程之间切换的命令。
   * 'info threads',一个用来查询现存线程的命令。
   * 'thread apply [THREADNO] [ALL] ARGS',一个用来向线程提供命令的命令。
   * 线程有关的断点设置。
   注意:这些特性不是在所有gdb版本都能使用,归根结底要看操作系统是否支持。
   如果你的gdb不支持这些命令,会显示出错信息:
          (gdb) info threads
          (gdb) thread 1
          Thread ID 1 not known.  Use the "info threads" command to
          see the IDs of currently known threads.
   gdb的线程级调试功能允许你观察你程序运行中所有的线程,但无论什么时候
gdb控制,总有一个“当前”线程。调试命令对“当前”进程起作用。
   一旦gdb发现了你程序中的一个新的线程,它会自动显示有关此线程的系统信
息。比如:
     [New process 35 thread 27]
不过格式和操作系统有关。
   为了调试的目的,gdb自己设置线程号。
`info threads'
     显示进程中所有的线程的概要信息。gdb按顺序显示:
       1.线程号(gdb设置)
       2.目标系统的线程标识。
       3.此线程的当前堆栈。
       一前面打'*'的线程表示是当前线程。
     例如:
     (gdb) info threads
       3 process 35 thread 27  0x34e5 in sigpause ()
       2 process 35 thread 23  0x34e5 in sigpause ()
     * 1 process 35 thread 13  main (argc=1, argv=0x7ffffff8)
         at threadtest.c:68

`thread THREADNO'
     把线程号为THREADNO的线程设为当前线程。命令行参数THREADNO是gdb内定的
线程号。你可以用'info threads'命令来查看gdb内设置的线程号。gdb显示该线程
的系统定义的标识号和线程对应的堆栈。比如:

          (gdb) thread 2
          [Switching to process 35 thread 23]
          0x34e5 in sigpause ()
     "Switching后的内容取决于你的操作系统对线程标识的定义。

`thread apply [THREADNO] [ALL]  ARGS'
     此命令让你对一个以上的线程发出相同的命令"ARGS",[THREADNO]的含义同上。
如果你要向你进程中的所有的线程发出命令使用[ALL]选项。
   无论gdb何时中断了你的程序(因为一个断点或是一个信号),它自动选择信号或
断点发生的线程为当前线程。gdb将用一个格式为'[Switching to SYSTAG]'的消息
来向你报告。
   *参见:运行和停止多线程程序。
   *参见:设置观察点

调试多进程的程序
==========================================
   gdb对调试使用'fork'系统调用产生新进程的程序没有很多支持。当一个程序开始
一个新进程时,gdb将继续对父进程进行调试,子进程将不受影响的运行。如果你在子
进程可能会执行到的地方设了断点,那么子进程将收到'SIGTRAP'信号,如果子进程没
有对这个信号进行处理的话那么缺省的处理就是使子进程终止。
   然而,如果你要一定要调试子进程的话,这儿有一个不是很麻烦的折衷的办法。在
子进程被运行起来的开头几句语句前加上一个'sleep'命令。这在调试过程中并不会引
起程序中很大的麻烦(不过你要自己注意例外的情况幺:-))。然后再使用'ps'命令列出
新开的子进程号,最后使用'attach'命令。这样就没有问题了。
  关于这一段,本人觉得实际使用上并不全是这样。我在调试程中就试过,好象不一定
能起作用,要看gdb的版本和你所使用的操作系统了。

停止和继续
***********************
   调试器的基本功能就是让你能够在程序运行时在终止之前在某些条件下停止下来,然
后再继续运行,这样的话你就可以检查当你的程序出错时你的程序究竟做了些什么。
   在gdb内部,你的程序会由于各种原因而暂时停止,比如一个信号,一个断点,或是
由于你用了'step'命令。在程序停止的时候你就可以检查和改变变量的值,设置或去掉
断点,然后继续你程序的运行。一般当程序停下来时gdb都会显示一些有关程序状态的信
息。比如象程序停止的原因,堆栈等等。如果你要了解更详细的信息,你可以使用'info
program'命令。另外,在任何时候你输入这条命令,gdb都会显示当前程序运行的状态信
息。

`info program'
     显示有关你程序状态的信息:你的程序是在运行还是停止,是什么进程,为什么停
止。

断点,观察点和异常
========================================
   断点的作用是当你程序运行到断点时,无论它在做什么都会被停止下来。对于每个断点
你都可以设置一些更高级的信息以决定断点在什么时候起作用。你可以使用'break’命令
来在你的程序中设置断点,在前面的例子中我们已经提到过一些这个命令的使用方法了。
你可以在行上,函数上,甚至在确切的地址上设置断点。在含有异常处理的语言(比如象
c++)中,你还可以在异常发生的地方设置断点。
   在SunOS 4.x,SVR4和Alpha OSF/1的设置中,你还可以在共享库中设置断点。
   观察点是一种特殊的断点。它们在你程序中某个表达式的值发生变化时起作用。你必
须使用另外一些命令来设置观察点。除了这个特性以外,你可以象对普通断点一样对观察
点进行操作--使用和普通断点操作一样的命令来对观察点使能,使不能,删除。
   你可以安排当你程序被中断时显示的程序变量。
   当你在程序中设置断点或观察点时gdb为每个断点或观察点赋一个数值.在许多对断点
操作的命令中都要使用这个数值。

设置断点
=============
   使用'break'或简写成'b'来设置断点。gdb使用环境变量$bpnum来记录你最新设置的
断点。
   你有不少方法来设置断点。
 

`break FUNCTION'
     此命令用来在某个函数上设置断点。当你使用允许函数重载的语言比如C++时,有可
能同时在几个重载的函数上设置了断点。

`break +OFFSET'
`break -OFFSET'
     在当前程序运行到的前几行或后几行设置断点。OFFSET为行号。

`break LINENUM'
     在行号为LINENUM的行上设置断点。程序在运行到此行之前停止。

`break FILENAME:LINENUM'
     在文件名为FILENAME的原文件的第LINENUM行设置断点。

`break FILENAME:FUNCTION'
     在文件名为FILENAME的原文件的名为FUNCTION的函数上设置断点。
当你的多个文件中可能含有相同的函数名时必须给出文件名。

`break *ADDRESS'
     在地址ADDRESS上设置断点,这个命令允许你在没有调试信息的程
序中设置断点。
`break'
     当'break'命令不包含任何参数时,'break'命令在当前执行到的程
序运行栈中的下一条指令上设置一个断点。除了栈底以外,这个命令使
程序在一旦从当前函数返回时停止。相似的命令是'finish',但'finish'
并不设置断点。这一点在循环语句中很有用。
     gdb在恢复执行时,至少执行一条指令。

`break ... if COND'
     这个命令设置一个条件断点,条件由COND指定;在gdb每次执行到此
断点时COND都被计算当COND的值为非零时,程序在断点处停止。这意味着
COND的值为真时程序停止。...可以为下面所说的一些参量。

`tbreak ARGS'
     设置断点为只有效一次。ARGS的使用同'break'中的参量的使用。

`hbreak ARGS'
     设置一个由硬件支持的断点。ARGS同'break'命令,设置方法也和
'break'相同。但这种断点需要由硬件支持,所以不是所有的系统上这个
命令都有效。这个命令的主要目的是用于对EPROM/ROM程序的调试。因为
这条命令可以在不改变代码的情况下设置断点。这可以同SPARCLite DSU
一起使用。当程序访问某些变量和代码时,DSU将设置“陷井”。注意:
你只能一次使用一个断点,在新设置断点时,先删除原断点。

Avatar_small
buy dissertation onl 说:
2020年6月28日 22:53

<a href="https://bestonlinewritingservice.com/cheap-dissertation-writing-services/">cheap dissertation service</a>

<a rel="dofollow" href="https://bestonlinewritingservice.com/personal-statement-writing-services/">personal statement writing services</a>

[URL=https://www.aussiessay.com/]topcv review[/URL]

[best essay writing services 2020](https://best-essay-writing.services/)

[url=https://collegessaywriters.com/bestessay-com-review/]bestessay review[/url]

Avatar_small
kevin 说:
2020年11月16日 18:45

I sincerely believe that this may be perhaps the best article yet. The composing quality here is grand, and my altosignpdf.com companions concur with me here. Ideally, you keep on delivering more substance like this later on, also.

Avatar_small
best smart glass 202 说:
2020年11月24日 16:21

UP Board 10th Model Paper 2021: UPMSP will release UP board class 10 model papers for 2021 in the last week of September 2021. Previous year's UP Board intermediate model paper 2021 can also be accessed on this page. UP board 10th model paper 2021 will help students to understand the exam <a href="https://www.questionspapers.in/up-madhyamik-shiksha-parishad-10th-question-paper/">UP Board Matric Model Paper 2021</a> pattern, types of questions and difficulty level of the exam. Therefore, students must refer to these UP board 10th model papers 2021 to know the weightage of marks and important topics. Students must solve these UP board 10th model papers 2021 in stipulated time to improve their answer writing speed and learn time management skills for the real exam. UP Board 10th exams 2021 have been conducted from February 18 to March, 2021. Read Downloading the UP Board Class 10 model papers 2021 subject-wise, stay on this page.

Avatar_small
junid 说:
2020年12月03日 18:58

let me take a model Take a container of some soda pop and fill it with some water and take as vastly different children as possible and ask them i'm feeling curious (pointing towards bottle without saying anything extra) " what is this ????"

Avatar_small
Robinjack 说:
2020年12月18日 03:54

I have prepared this updated practice exam with answers! 50 questions with answers. It will help you succeed in this certification exam tutorial spring

Avatar_small
sameer 说:
2020年12月27日 14:27

hey all, I was simply checking out this blog and I actually admire the idea of the article, and don’t have anything to do, so if anybody want to to have an engrossing convo about it, please contact me on AIM, my identify is heather smith https://audiomack.com/rouletteonline88

Avatar_small
Robinjack 说:
2020年12月28日 22:23

But another intelligent weblog! Completely cannot wait for a lot more! Buy oxycodone

Avatar_small
퍼스트카지노 说:
2021年1月06日 15:42

But another intelligent weblog! Completely cannot wait for a lot more!

Avatar_small
Robinjack 说:
2021年1月08日 19:27

Thank you for this information I had been researching all Google in order to uncover it! Ross Levinsohn profile

Avatar_small
Robinjack 说:
2021年1月08日 19:27

stainless kitchen sinks serves me better and they are stain resistant too.. Ross Levinsohn CEO

Avatar_small
Robinjack 说:
2021年1月08日 19:27

You made some decent points there. I looked on the web to the issue and discovered most people goes as well as with your web site. Ross Levinsohn profile

Avatar_small
Robinjack 说:
2021年1月08日 19:27

if you want to protect the integrity of your heart, then low fat foods should be the thing to go` Maven Sports Illustrated

Avatar_small
안전놀이터 说:
2021年1月17日 20:10

Black Ops Zombies… [...]some people still have not played this game. It’s hard to imagine or believe, but yes, some people are missing out on all of the fun.[...]…

Avatar_small
BLOOD PRESSURE READI 说:
2021年1月27日 18:58

But another intelligent weblog! Completely cannot wait for a lot more!

Avatar_small
Forex Trading Strate 说:
2021年1月28日 20:54

Everything is quite open and very clear reason of troubles

Avatar_small
Daniel Gordon Reddit 说:
2021年1月30日 19:52

never saw a website like this, relaly impressed. compared to other blogs with this article this was definatly the best site. will save.

Avatar_small
Daniel Gordon street 说:
2021年1月30日 19:52

This design is steller! You obviously know how to keep a reader entertained. Between your wit and your videos, I was almost moved to start my own blog (well, almost…HaHa!) Fantastic job. I really loved what you had to say

Avatar_small
Daniel Gordon GLD Pa 说:
2021年1月30日 19:52

I like what you guys are up also. Such clever work and reporting! Keep up the excellent works guys I’ve incorporated you guys to my blogroll. I think it will improve the value of my website .

Avatar_small
Daniel Gordon info 说:
2021年1月30日 19:53

you can always tell the quality of USB cables by looking at the thickness of the cable. thicker usb cables have higher quality`

Avatar_small
Daniel Gordon course 说:
2021年1月30日 19:53

I have been exploring for a little for any high quality articles or blog posts on this kind of area . Exploring in Yahoo I at last stumbled upon this website. Reading this info So i am happy to convey that I have an incredibly good uncanny feeling I discovered just what I needed. I most certainly will make sure to don’t forget this web site and give it a look regularly.

Avatar_small
Ross Levinsohn 说:
2021年1月30日 19:53

I simply could not go away your web site prior to suggesting that I really enjoyed the standard information a person supply on your guests? Is going to be back steadily to inspect new posts Rent a car kosova

Avatar_small
GLD Partners donates 说:
2021年1月30日 19:53

hey there and thank you for your information — I’ve certainly picked up anything new from right here. I did however expertise a few technical points using this website, as I experienced to reload the site many times previous to I could get it to load correctly. I had been wondering if your hosting is OK? Not that I am complaining, but slow loading instances times will sometimes affect your placement in google and could damage your quality score if ads and marketing with Adwords. Anyway I’m adding this RSS to my email and can look out for a lot more of your respective intriguing content. Ensure that you update this again very soon..

Avatar_small
Ross Levinsohn profe 说:
2021年1月30日 21:32

But another intelligent weblog! Completely cannot wait for a lot more!

Avatar_small
buy cbd edibles onli 说:
2021年2月07日 17:43

Everything is quite open and very clear reason of troubles

Avatar_small
Robinjack 说:
2021年2月17日 21:44

good post. Ne’er knew this, thanks for letting me know. Best Mountain towns in colorado

Avatar_small
Robinjack 说:
2021年2月23日 04:45

I agree with you. I wish I had your blogging style. schlüsseldienst kosten

Avatar_small
smm panel 说:
2021年2月23日 18:50

Everything is quite open and very clear reason of troubles

Avatar_small
maxbet 说:
2021年4月07日 18:18

Nice post. I understand some thing harder on diverse blogs everyday. It will always be stimulating to read content from other writers and rehearse something from their website. I’d opt to apply certain with the content in my small weblog whether you don’t mind. Natually I’ll offer you a link in your internet blog. Many thanks for sharing.

Avatar_small
Robinjack 说:
2021年4月24日 21:12

Shania Twain for me is the best country music singer of all times, I also like Taylor Swift but nothing will beat Shania Twain., Monthly Income Review

Avatar_small
Monero Pool 说:
2021年5月16日 22:28

I have read some good stuff here. Certainly worth bookmarking for revisiting. I wonder how much effort you put to create such a magnificent informative website.

Avatar_small
alex 说:
2021年5月23日 00:43

Youre so cool! I dont suppose Ive read anything such as this just before. So nice to find somebody by original thoughts on this subject. realy thanks for beginning this up. this site is something that is required over the internet, someone with some originality. beneficial problem for bringing a new challenge towards world wide web! creative writer

Avatar_small
cheap vintage clothi 说:
2021年5月26日 13:21

Dude. You mind if I link to this post from my own site? This is just too awesome.

Avatar_small
alex 说:
2021年5月31日 20:29

Youre so cool! I dont suppose Ive read anything in this way before. So nice to locate somebody by incorporating original ideas on this subject. realy we appreciate you beginning this up. this website is something that is required on the net, an individual with a little originality. helpful task for bringing a new challenge towards the world wide web! bandar togel online

Avatar_small
jack 说:
2021年6月10日 21:10

Hi there, just became alert to your blog through Google, and found that it’s really informative. I am gonna watch out for brussels. I will be grateful if you continue this in future. Many people will be benefited from your writing. Cheers! диодный лазер купить в рассрочку

Avatar_small
Buy TikTok Likes 说:
2021年6月12日 13:18

You ought to experience a contest for just one of the most effective blogs on the internet. I’ll suggest this blog!

Avatar_small
พนันออนไลน์ เว็บไหนด 说:
2021年6月19日 19:51

“Greetings! Very helpful advice on this article! It is the little changes that make the biggest changes. Thanks a lot for sharing!”

Avatar_small
Robinjack 说:
2021年6月27日 17:27

It’s rare knowledgeable individuals about this topic, and you could be seen as what happens you are talking about! Thanks The Simplest Baccarat Strategy

Avatar_small
Robinjack 说:
2021年6月29日 19:19

I don’t even know how I ended up right here, but I believed this submit used to be great. I don’t understand who you’re however certainly you are going to a famous blogger should you are not already Cheers! Slotxo

Avatar_small
Robinjack 说:
2021年7月01日 20:03

I’d been honored to get a call from a friend as he found the important tips shared in your site. Reading through your blog post is a real wonderful experience. Thanks again for thinking about readers much like me, and I desire for you the best of success as being a professional realm. How to Gain Baccarat

Avatar_small
Robinjack 说:
2021年7月11日 22:16

You made some decent points there. I looked on the net for any issue and found most individuals goes in addition to with all your website. read more

Avatar_small
WWW 说:
2021年7月14日 16:34

As I site possessor I believe the content matter here is rattling magnificent , appreciate it for your efforts. You should keep it up forever! Good Luck.RoyalCBD.com

Avatar_small
jack 说:
2021年7月15日 18:33

You made some decent points there. I looked on the web for any issue and located most people may go in addition to together with your site. 토토사이트

Avatar_small
WWW 说:
2021年7月19日 18:07

As I site possessor I believe the content matter here is rattling magnificent , appreciate it for your efforts. You should keep it up forever! Good Luck.can you give a dog cbd oil to calm them down

Avatar_small
asas 说:
2021年7月30日 22:51

You seem like you would be interesting in a database full of bodybuilding articles! 강남출장안마

Avatar_small
sameer 说:
2021年7月31日 14:06

Do you people have a facebook fan page? I looked for one on twitter but could not discover one, I would really like to become a fan! 청주출장안마

Avatar_small
WWW 说:
2021年7月31日 17:19

I impressed, I must say. Actually hardly ever do I encounter a weblog that both educative and entertaining, and let me tell you, you have hit the nail on the head. Your thought is excellent; the issue is one thing that not enough people are speaking intelligently about. I’m very glad that I stumbled across this in my search for one thing relating to this.https://www.viki.com/users/william_butlernew1_139/about

Avatar_small
sameer 说:
2021年8月01日 14:08

anatomy courses - These Best and Free online anatomy courses will teach you about the structure and function of body parts. human anatomy and physiology, cardiac anatomy human anatomy course

Avatar_small
asas 说:
2021年8月03日 14:05

I added this article to my favorites and plan to return to digest more soon. It’s easy to read and understand as well as intelligent. I truly enjoyed my first read through of this article. https://westasianetwork.com/ashford-formula-oman.php

Avatar_small
sa 说:
2021年8月05日 18:08

The next morning, they wake up with another of their infamous hangovers. 먹튀검증업체

Avatar_small
jack 说:
2021年8月16日 15:52

I really like your blog.. very nice colors & theme. Did you create this website yourself or did you hire someone to do it for you? Plz respond as I’m looking to construct my own blog and would like to find out where u got this from. appreciate it UFABET

Avatar_small
virus 说:
2022年2月22日 18:08

Yes, I am entirely agreed with this article, and I just want say that this article is very helpful and enlightening. I also have some precious piece of concerned info !!!!!!Thanks. natural dog food

Avatar_small
. 카지노사이트 说:
2022年4月11日 01:15

Breathe out Perfectly merchandise descends from some sort of California-based tribe associated with pot founders with generations associated with practical knowledge and have absolutely generated on the listing of highest-grade Delta-8 wrinkles associated with merchandise already in the market. more info

Avatar_small
. 카지노사이트 说:
2022年4月27日 01:08

Hello, I have browsed most of your posts. This post is probably where I got the most useful information for my research. Thanks for posting, maybe we can see more on this. Are you aware of any other websites on this subject. Crypto insurance

Avatar_small
COOK 说:
2022年5月13日 03:01

I recently came across your blog and have been reading along. I thought I would leave my first comment. I don't know what to say except that I have enjoyed reading. Nice blog. I will keep visiting this blog very often. 토토사이트

Avatar_small
john elia 说:
2022年5月17日 18:47

Incredible articles and awesome design. Your blog entry merits the greater part of the positive input it"s been getting. <a href="https://18.142.25.206:8877/">playvipbet88</a>

Avatar_small
. 카지노사이트 说:
2022年6月05日 03:30

It is truly a well-researched content and excellent wording. I got so engaged in this material that I couldn’t wait reading. I am impressed with your work and skill. Thanks. Download Apps & Games

Avatar_small
. 카지노사이트 说:
2022年7月08日 18:57

I am very happy to discover your post as it will become on top in my collection of favorite blogs to visit. restaurants open near me

Avatar_small
. 카지노사이트 说:
2022年7月10日 03:57

I really impressed after read this because of some quality work and informative thoughts . I just wanna say thanks for the writer and wish you all the best for coming!. wildrift coach

Avatar_small
dark web/deep web/d 说:
2022年8月04日 18:46

This section of the Internet is home to many of the illicit activities and websites that are available on the world wide web today. If you want to know more about how to find out what the Dark Web is and how to stay safe while surfing the web, then read on.  dark web links

Avatar_small
dark web/deep web/d 说:
2022年8月04日 19:29

When the software connects to the Dark Web site, it receives a list of web addresses instead of the normal web site address. Each of these "links" is invisible to the naked eye, giving hackers a way to expose your credit card numbers, personal information, and even bank accounts.   deep web

Avatar_small
dark web/deep web/d 说:
2022年8月04日 19:46

By exposing yourself to the dangers of the dark web links through unsavory websites, you will increase the likelihood that you will become the next victim of computer hackers. dark web links

Avatar_small
dark web/deep web/d 说:
2022年8月04日 20:08

By staying informed, you will be able to understand the many ways that hackers are trying to infiltrate your computer, and you can prevent them from doing their damage to your identity and your finances. By reading up on the dark web, you will be able to use the information that you find to your advantage.  dark web sites

Avatar_small
dark web/deep web/d 说:
2022年8月04日 20:23

If you are visiting a legitimate website, you will not run into any problems with running into dangerous individuals. But, on the dark web, you can't really know what you are looking at.   dark web

Avatar_small
dark web/deep web/d 说:
2022年8月04日 20:39

Most affiliate marketers start by creating a product to market. In this step, they should already have an idea of the product that they want to sell. The product must be one that a vast majority of people will buy, and it should be something that is easy for them to advertise.   work from home jobs

Avatar_small
dark web/deep web/d 说:
2022年8月04日 20:54

The world of affiliate marketing is huge, full of new affiliates, and a whole new marketing landscape that's constantly evolving. This has resulted in affiliate marketing success stories coming out left and right this year.   affiliate marketing success

Avatar_small
. 카지노사이트 说:
2022年9月01日 01:07

Great post, you have pointed out some fantastic points , I likewise think this s a very wonderful website. twitter-pva-accounts

Avatar_small
. 카지노사이트 说:
2022年9月29日 03:36

If you are looking for more information about flat rate locksmith Las Vegas check that right away. forex trading explained in simple terms

Avatar_small
Johny 说:
2022年10月20日 15:33

Een greep uit onze unieke buitenactiviteiten zijn: Escape in the City, Expeditie Robinson, Steps in the City óf diverse App-Games. Natuurlijk zijn er ook quizzen voor groepsuitjes en teamuitjes binnen , zoals: Escape Diner, PubQuiz of Wij Houden van Holland. Aansluitend kunnen jullie genieten van een heerlijk hapje en drankje. Liever het uitje ergens anders in deze provincie? Ga voor de locatie Franeker, Drachten of Harlingen! Jullie bedrijfsuitje: It giet oan in Ljouwert! It giet oan in Ljouwert

Avatar_small
johny 说:
2022年11月19日 00:44

I found your this post while searching for information about blog-related research ... It's a good post .. keep posting and updating information. about us

Avatar_small
johny 说:
2022年11月20日 04:26

I am happy to find this post Very useful for me, as it contains lot of information. I Always prefer to read The Quality and glad I found this thing in you post. Thanks Hodgdon LIL GUN

Avatar_small
jackseo 说:
2022年11月23日 22:58

i think this is an informative post and it is very useful and knowledgeable. therefore, I would like to thank you for the efforts you have made in writing this article. glock 19x gen 5

Avatar_small
Johny 说:
2023年1月01日 18:21

Most of the time I don’t make comments on websites, but I'd like to say that this article really forced me to do so. Really nice post! Sufi Qawwali Network

Avatar_small
johny 说:
2023年1月30日 01:51

Yes i am totally agreed with this article and i just want say that this article is very nice and very informative article.I will make sure to be reading your blog more. You made a good point but I can't help but wonder, what about the other side? !!!!!!Thanks Drywall

Avatar_small
Johny 说:
2023年2月03日 19:08

Interesting and amazing how your post is! It Is Useful and helpful for me That I like it very much, and I am looking forward to Hearing from your next.. oil and gas training courses uk

Avatar_small
SEO 说:
2023年6月12日 00:14

I would like to say that this blog really convinced me to do it! Thanks, very good post. 먹튀검증

Avatar_small
sophia 说:
2023年6月19日 02:17

Thanks for sharing this quality information with us. I really enjoyed reading. Will surely going to share this URL with my friends. 인천출장마사지

Avatar_small
sophia 说:
2023年6月26日 16:48

Nice to be visiting your blog again, it has been months for me. Well this article that i’ve been waited for so long. I need this article to complete my assignment in the college, and it has same topic with your article. Thanks, great share. <a href=" https://autenticoseo.com/">agencia seo</a>

Avatar_small
sophia 说:
2023年6月26日 16:49

Nice to be visiting your blog again, it has been months for me. Well this article that i’ve been waited for so long. I need this article to complete my assignment in the college, and it has same topic with your article. Thanks, great share. agencia seo

Avatar_small
sophia 说:
2023年8月20日 21:50

I recently came across your blog and have been reading along. I thought I would leave my first comment. I don't know what to say except that I have enjoyed reading. Nice blog. I will keep visiting this blog very often. <a href="https://outblasts.com/product/large-pistol-primers-for-sale/">large pistol primers</a>

Avatar_small
sophia 说:
2023年8月20日 21:51

I recently came across your blog and have been reading along. I thought I would leave my first comment. I don't know what to say except that I have enjoyed reading. Nice blog. I will keep visiting this blog very often. large pistol primers

Avatar_small
sophia 说:
2023年8月29日 14:25

I really appreciate this wonderful post that you have provided for us. I assure this would be beneficial for most of the people. เว็บแทงบอลดีที่สุดUFABET

Avatar_small
sophia 说:
2023年8月31日 21:21

You’ve got some interesting points in this article. I would have never considered any of these if I didn’t come across this. Thanks!. AVALIADOR PREMIADO É GOLPE

Avatar_small
sophia 说:
2023年9月02日 19:25

You’ve got some interesting points in this article. I would have never considered any of these if I didn’t come across this. Thanks!. 토토사이트

Avatar_small
sophia 说:
2023年9月03日 02:11

You’ve got some interesting points in this article. I would have never considered any of these if I didn’t come across this. Thanks!. ikaria lean belly juice

Avatar_small
sophia 说:
2023年9月03日 17:48

I have read a few of the articles on your website now, and I really like your style of blogging. I added it to my favorites blog site list and will be checking back soon. Please check out my site as well and let me know what you think. Animale Male Enhancement

Avatar_small
Dave 说:
2023年9月07日 00:49

This particular is usually apparently essential and moreover outstanding truth along with for sure fair-minded and moreover admittedly useful My business is looking to find in advance designed for this specific useful stuffs… bubbles game

Avatar_small
Dave 说:
2023年9月17日 00:26

I would like to thank you for the efforts you have made in writing this article. I am hoping the same best work from you in the future as well. Thanks... car ports

Avatar_small
seo akc 说:
2023年10月07日 06:03

You bear through a awesome vacancy. I sanity definitely quarry it moreover personally suggest to my buddys. I am self-possessed they determination be benefited from this scene. <a href="https://www.cbdflex.com/product/30ct-cbd-gummy-bears-300mg/">Buy CBD Gummy Bears</a>

Avatar_small
Dave 说:
2023年10月09日 13:04

Wow! Such an amazing and helpful post this is. I really really love it. It's so good and so awesome. I am just amazed. I hope that you continue to do your work like this in the future also LIFT DETOX CAPS

Avatar_small
sophia 说:
2023年10月11日 17:42

This is highly informatics, crisp and clear. I think that everything has been described in systematic manner so that reader could get maximum information and learn many things. Fortune Tiger

Avatar_small
Dave 说:
2023年10月26日 00:22

Your article has piqued a lot of positive interest. I can see why since you have done such a good job of making it interesting. Bitmonk Recovery

Avatar_small
wallpaper singapore 说:
2023年11月02日 03:58

Hi, I find reading this article a joy. It is extremely helpful and interesting and very much looking forward to reading more of your work.. Sajta de Pollo

Avatar_small
Dav 说:
2023年11月05日 14:42

Awesome article, it was exceptionally helpful! I simply began in this and I'm becoming more acquainted with it better! Cheers, keep doing awesome! wallpaper singapore

Avatar_small
Dave 说:
2023年11月11日 16:12

Awesome article, it was exceptionally helpful! I simply began in this and I'm becoming more acquainted with it better! Cheers, keep doing awesome! walmart gift card balance check

Avatar_small
Dave 说:
2023年11月13日 21:04

The compact size of the packaging is a game-changer for my art supplies. pencil packing work from home

Avatar_small
Dave 说:
2023年11月16日 20:19

I really loved reading your blog. It was very well authored and easy to understand. Unlike other blogs I have read which are really not that good.Thanks alot! temazepam kopen

Avatar_small
Dave 说:
2023年12月22日 18:13

I found your this post while searching for information about blog-related research ... It's a good post .. keep posting and updating information. roket288

Avatar_small
Dave 说:
2023年12月24日 18:04

Thank you so much for sharing this great blog.Very inspiring and helpful too.Hope you continue to share more of your ideas.I will definitely love to read. fake ausweis bestellen

Avatar_small
Dave 说:
2024年1月07日 15:00

This blog is really great. The information here will surely be of some help to me. Thanks!. weed bestellen

Avatar_small
Dave 说:
2024年2月09日 12:59

i read a lot of stuff and i found that the way of writing to clearifing that exactly want to say was very good so i am impressed and ilike to come again in future.. weed bestellen

Avatar_small
Dave 说:
2024年2月21日 02:52

hi was just seeing if you minded a comment. i like your website and the thme you picked is super. I will be back. PetsGear

Avatar_small
Dave 说:
2024年3月24日 23:35 hi was just seeing if you minded a comment. i like your website and the thme you picked is super. I will be back. 먹튀사이트 올라카지노

登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter